X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=fdio.infra.terraform%2Fterraform-aws-elastic-beanstalk-environment%2Fexample%2Fvariables.tf;fp=fdio.infra.terraform%2Fterraform-aws-elastic-beanstalk-environment%2Fexample%2Fvariables.tf;h=3c07178e067e10706aa5012318cf00d0af5b2f9f;hp=0000000000000000000000000000000000000000;hb=6c8ca0ad2a9fe0bab2033e41c6b056226cf9a856;hpb=273a9aa49bba07740b7f7e15277d05f334ab6cc1 diff --git a/fdio.infra.terraform/terraform-aws-elastic-beanstalk-environment/example/variables.tf b/fdio.infra.terraform/terraform-aws-elastic-beanstalk-environment/example/variables.tf new file mode 100644 index 0000000000..3c07178e06 --- /dev/null +++ b/fdio.infra.terraform/terraform-aws-elastic-beanstalk-environment/example/variables.tf @@ -0,0 +1,23 @@ +variable "region" { + description = "AWS Region." + type = string + default = "us-east-1" +} + +variable "environment_application" { + description = "The name of the application, must be unique within account." + type = string + default = "Beanstalk Application" +} + +variable "application_description" { + description = "Short description of the application." + type = string + default = "Beanstalk Application" +} + +variable "application_name" { + description = "The name of the application, must be unique within account." + type = string + default = "Beanstalk" +}