Skip to content

Latest commit

 

History

History
75 lines (42 loc) · 1.77 KB

_vault_.md

File metadata and controls

75 lines (42 loc) · 1.77 KB

pulumi-vault-on-gke - v0.0.4Config"vault"

Config module: "vault"

Variables

Variables

Const numVaultPods

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


Const vaultContainer

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'


Const vaultInitContainer

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'


Const vaultRecoveryKeys

vaultRecoveryKeys: string = config.get('vaultRecoveryKeys') || '1'

Defined in vault.ts:31

Number of recovery keys to generate.

default '1'


Const vaultRecoveryThreshold

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'