X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=fdio.infra.terraform%2Fterraform-aws-fdio-csit-dash-app-base%2Fvariables.tf;h=cfd3f06c816b3de8114abdb2c6180fe9a17e338d;hb=61cf4d230c3bd88cd0a6f3782796cc3949485b72;hp=71472272135e0a08992c09f4190d8603ba85bfa0;hpb=f6d5cf4de53af9ba7907d2c0bf715ceca5d81f90;p=csit.git diff --git a/fdio.infra.terraform/terraform-aws-fdio-csit-dash-app-base/variables.tf b/fdio.infra.terraform/terraform-aws-fdio-csit-dash-app-base/variables.tf index 7147227213..cfd3f06c81 100644 --- a/fdio.infra.terraform/terraform-aws-fdio-csit-dash-app-base/variables.tf +++ b/fdio.infra.terraform/terraform-aws-fdio-csit-dash-app-base/variables.tf @@ -7,7 +7,7 @@ variable "region" { variable "vault_provider_address" { description = "Vault cluster address." type = string - default = "http://10.30.51.28:8200" + default = "http://vault.service.consul:8200" } variable "vault_provider_skip_tls_verify" { @@ -19,10 +19,40 @@ variable "vault_provider_skip_tls_verify" { variable "vault_provider_token" { description = "Vault root token." type = string - sensitive = true + 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-central-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" +} + +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 = 41 +}