Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/reference/config/vaults/aws-acm.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,25 @@ Note: this requires AWS Nitro Enclaves for ACM to be enabled on the instance whe
[Available in <ZillaPlus/>](https://www.aklivity.io/products/zilla-plus)
{.zilla-plus-badge .hint-container .info}

The [revocation](#options-revocation) option is used to specify the certificate revocation method.

```yaml {2}
server:
type: aws-acm
options:
revocation: crl
```

## Configuration (\* required)

### options

> `object`

The `aws-acm` specific options.

#### options.revocation

> `enum` [ `crl`, `none` ] | Default `none`

Certificate revocation method.
18 changes: 18 additions & 0 deletions src/reference/config/vaults/aws-secrets.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,25 @@ This is typically combined with a [tls](../bindings/tls/README.md) binding `vaul
[Available in <ZillaPlus/>](https://www.aklivity.io/products/zilla-plus)
{.zilla-plus-badge .hint-container .info}

The [revocation](#options-revocation) option is used to specify the certificate revocation method.

```yaml {2}
server:
type: aws-secrets
options:
revocation: crl
```

## Configuration (\* required)

### options

> `object`

The `aws-secret` specific options.

#### options.revocation

> `enum` [ `crl`, `none` ] | Default `none`

Certificate revocation method.
9 changes: 9 additions & 0 deletions src/reference/config/vaults/filesystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ The [trust](#options-trust) option is used to verify identity of the remote peer

The [signers](#options-signers) option is used to challenge for mutual authentication in a TLS handshake.

The [revocation](#options-revocation) option is used to specify the certificate revocation method.

```yaml {2}
server:
type: filesystem
Expand All @@ -25,6 +27,7 @@ server:
store: localhost.p12
type: pkcs12
password: ${{env.KEYS_PASSWORD}}
revocation: crl
```

## Configuration (\* required)
Expand Down Expand Up @@ -114,3 +117,9 @@ Keystore type.
> `string`

Keystore password.

#### options.revocation

> `enum` [ `crl`, `none` ] | Default `none`

Certificate revocation method.