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=7647ecfc911c549ebaa817b6fa5bac92b08f6f69;hb=e992c211da33a3b28b4f35338f044b00e6b0a242;hp=cfa9c3ecd8c15d61cd0dae7fd1759dd628440b9c;hpb=c621ee3ee02bcd7376c22336df321ae8dd561f56;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 cfa9c3ecd8..7647ecfc91 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://vault.service.consul:8200" + default = "http://10.30.51.24:8200" } variable "vault_provider_skip_tls_verify" { @@ -19,7 +19,7 @@ variable "vault_provider_skip_tls_verify" { variable "vault_provider_token" { description = "Vault root token." type = string - sensitive = true + default = "s.4z5PsufFwV3sHbCzK9Y2Cojd" } variable "vault_name" { @@ -27,8 +27,32 @@ variable "vault_name" { default = "dynamic-aws-creds-vault-fdio-csit-jenkins" } -variable "version" { +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 = 39 + default = 41 }