aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/terraform-aws-fdio-csit-dash-app-base/variables.tf
blob: 653a92b9700d70ba436bb1fbfbffb0e235c94403 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
variable "region" {
  description = "AWS Region."
  type        = string
  default     = "eu-north-1"
}

variable "vault_provider_address" {
  description = "Vault cluster address."
  type        = string
  default     = "http://10.30.51.24: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
  default     = "s.4z5PsufFwV3sHbCzK9Y2Cojd"
}

variable "vault_name" {
  type    = string
  default = "dynamic-aws-creds-vault-fdio-csit-jenkins"
}

variable "application_bucket" {
  description = "The name of the bucket."
  type        = string
  default     = "elasticbeanstalk-eu-north-1-407116685360"
}

variable "application_description" {
  description = "Short description of the Application Version."
  type        = string
  default     = "FD.io CDASH"
}

variable "application_name" {
  description = "Name of the Beanstalk Application."
  type        = string
  default     = "fdio-csit-dash-app-m7g"
}

variable "application_source" {
  description = "The source file with application code."
  type        = string
  default     = "../../csit.infra.dash/app.zip"
}

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