Revert "fix(IPsecUtil): Delete keywords no longer used"
[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     = "eu-north-1"
5 }
6
7 variable "vault_provider_address" {
8   description = "Vault cluster address."
9   type        = string
10   default     = "http://10.30.51.24: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   default     = "s.4z5PsufFwV3sHbCzK9Y2Cojd"
23 }
24
25 variable "vault_name" {
26   type    = string
27   default = "dynamic-aws-creds-vault-fdio-csit-jenkins"
28 }
29
30 variable "application_bucket" {
31   description = "The name of the bucket."
32   type        = string
33   default     = "elasticbeanstalk-eu-north-1-407116685360"
34 }
35
36 variable "application_description" {
37   description = "Short description of the Application Version."
38   type        = string
39   default     = "FD.io CDASH"
40 }
41
42 variable "application_name" {
43   description = "Name of the Beanstalk Application."
44   type        = string
45   default     = "fdio-csit-dash-app-m7g"
46 }
47
48 variable "application_source" {
49   description = "The source file with application code."
50   type        = string
51   default     = "../../csit.infra.dash/app.zip"
52 }
53
54 variable "application_version" {
55   description = "Application version string."
56   type        = number
57   default     = 1
58 }