aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/terraform-aws-fdio-csit-dash-app-base/variables.tf
blob: ec8a47e73ff45ef622173d934c0f16ed6491a057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
variable "region" {
  description = "AWS Region."
  type        = string
  default     = "eu-central-1"
}

variable "vault_provider_address" {
  description = "Vault cluster address."
  type        = string
  default     = "http://vault.service.consul: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 "vault_name" {
  type    = string
  default = "dynamic-aws-creds-vault-fdio-csit-jenkins"
}

variable "version" {
  description = "Application version string."
  type        = number
  default     = 1
}