X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=fdio.infra.terraform%2Fterraform-aws-elastic-beanstalk-application-version%2Fvariables.tf;fp=fdio.infra.terraform%2Fterraform-aws-elastic-beanstalk-application-version%2Fvariables.tf;h=8d7dd45755d118cee122b6a4a8979ac87b950aa1;hp=6ac2ae7bfeaed3d8b444a2983dde72bc4e6c0a80;hb=61cf4d230c3bd88cd0a6f3782796cc3949485b72;hpb=a76b2a54b95e2a6b9620a631098f0016a0dc8e40 diff --git a/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application-version/variables.tf b/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application-version/variables.tf index 6ac2ae7bfe..8d7dd45755 100644 --- a/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application-version/variables.tf +++ b/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application-version/variables.tf @@ -1,3 +1,9 @@ +variable "application_bucket" { + description = "The name of the bucket." + type = string + default = "elasticbeanstalk-eu-central-1" +} + variable "application_description" { description = "Short description of the Application Version." type = string @@ -5,13 +11,19 @@ variable "application_description" { } variable "application_name" { - description = "Name of the Beanstalk Application the version is associated." + description = "Name of the Beanstalk Application." + type = string + default = "beanstalk" +} + +variable "application_name_version" { + description = "Version of the Beanstalk Application." type = string - default = "Beanstalk" + default = "beanstalk-1" } -variable "application_version_name" { - description = "Unique name for the this Application Version." +variable "application_source" { + description = "The source file with application code." type = string - default = "Beanstalk Version" + default = "app.zip" }