diff options
author | 2025-01-22 11:51:02 +0100 | |
---|---|---|
committer | 2025-01-23 09:12:41 +0000 | |
commit | 6ffe4cc3cc31fdb6cbb46436a38ddc8409d040ef (patch) | |
tree | f0f318e2e028cd7ac449d71c0cafde7f6c7c54fd /fdio.infra.terraform/terraform-vault-fdio-creds/variables.tf | |
parent | f1f090a9ddfe8ee8de209ff435d720d711c30ccd (diff) |
feat(terraform): Refactor roles
Signed-off-by: Peter Mikus <peter.mikus@icloud.com>
Change-Id: Ie5e5bb0d8d3c927c26286439fb128529b8b30a81
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 |