pulumi-vault-on-gke - v0.0.4 › Config › "vault"
• numVaultPods: number = config.getNumber('numVaultPods') || 3
Defined in vault.ts:10
Number of Vault pods to run. Anti-affinity rules spread pods across available nodes. Please use an odd number for better availability.
default
3
• vaultContainer: string = config.get('vaultContainer') || 'vault:1.2.1'
Defined in vault.ts:17
Name of the Vault container image to deploy. This can be specified like
container:version
or as a full container URL.
default
'vault:1.2.1'
• vaultInitContainer: string = config.get('vaultInitContainer') || 'sethvargo/vault-init:1.0.0'
Defined in vault.ts:24
Name of the Vault init container image to deploy. This can be specified like
container:version
or as a full container URL.
default
'sethvargo/vault-init:1.0.0'
• vaultRecoveryKeys: string = config.get('vaultRecoveryKeys') || '1'
Defined in vault.ts:31
Number of recovery keys to generate.
default
'1'
• vaultRecoveryThreshold: string = config.get('vaultRecoveryThreshold') || '1'
Defined in vault.ts:38
Number of recovery keys required for quorum. This must be less than
or equal to vaultRecoveryKeys
.
default
'1'