diff options
Diffstat (limited to 'fdio.infra.terraform/terraform-vault-fdio-creds/variables.tf')
-rw-r--r-- | fdio.infra.terraform/terraform-vault-fdio-creds/variables.tf | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/fdio.infra.terraform/terraform-vault-fdio-creds/variables.tf b/fdio.infra.terraform/terraform-vault-fdio-creds/variables.tf new file mode 100644 index 0000000000..b1f64eccf2 --- /dev/null +++ b/fdio.infra.terraform/terraform-vault-fdio-creds/variables.tf @@ -0,0 +1,29 @@ +variable "vault_provider_address" { + description = "Vault cluster address." + type = string + default = "http://10.30.51.26:8200" +} + +variable "vault_provider_skip_tls_verify" { + description = "Verification of the Vault server's TLS certificate." + type = bool + default = false +} + +variable "vault_provider_token" { + description = "Vault root token." + type = string + sensitive = true +} + +variable "aws_access_key" { + description = "AWS access key" + type = string + sensitive = true +} + +variable "aws_secret_key" { + description = "AWS secret key" + type = string + sensitive = true +}
\ No newline at end of file |