25790290bcce63d5efe3547d1087d6a37e2086a6
[csit.git] / fdio.infra.terraform / terraform-aws-fdio-csit-dash-app-base / variables.tf
1 variable "region" {
2   description = "AWS Region."
3   type        = string
4   default     = "us-east-1"
5 }
6
7 variable "vault_provider_address" {
8   description = "Vault cluster address."
9   type        = string
10   default     = "http://10.30.51.28:8200"
11 }
12
13 variable "vault_provider_skip_tls_verify" {
14   description = "Verification of the Vault server's TLS certificate."
15   type        = bool
16   default     = false
17 }
18
19 variable "vault_provider_token" {
20   description = "Vault root token."
21   type        = string
22   sensitive   = true
23 }
24
25 variable "vault_name" {
26   type    = string
27   default = "dynamic-aws-creds-vault-fdio-csit-jenkins"
28 }