Files
vault/enos/modules/vault-verify-write-data/variables.tf
hc-github-team-secure-vault-core 7148be3a2b backport of commit 9e776332c5 (#17978)
Co-authored-by: Rebecca Willett <47540675+rebwill@users.noreply.github.com>
2022-11-18 10:11:28 -05:00

26 lines
561 B
HCL

variable "vault_install_dir" {
type = string
description = "The directory where the Vault binary will be installed"
default = null
}
variable "vault_instance_count" {
type = number
description = "How many vault instances are in the cluster"
}
variable "vault_instances" {
type = map(object({
private_ip = string
public_ip = string
}))
description = "The vault cluster instances that were created"
}
variable "vault_root_token" {
type = string
description = "The vault root token"
default = null
}