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=6ac2ae7bfeaed3d8b444a2983dde72bc4e6c0a80;hp=0000000000000000000000000000000000000000;hb=6c8ca0ad2a9fe0bab2033e41c6b056226cf9a856;hpb=273a9aa49bba07740b7f7e15277d05f334ab6cc1 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 new file mode 100644 index 0000000000..6ac2ae7bfe --- /dev/null +++ b/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application-version/variables.tf @@ -0,0 +1,17 @@ +variable "application_description" { + description = "Short description of the Application Version." + type = string + default = "Beanstalk Application" +} + +variable "application_name" { + description = "Name of the Beanstalk Application the version is associated." + type = string + default = "Beanstalk" +} + +variable "application_version_name" { + description = "Unique name for the this Application Version." + type = string + default = "Beanstalk Version" +}