From 6c8ca0ad2a9fe0bab2033e41c6b056226cf9a856 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Wed, 16 Mar 2022 16:42:57 +0100 Subject: feat(dash): Terraform AWS Beanstalk split Signed-off-by: Peter Mikus Change-Id: I6a9f54be0f734cd267c7ea5aa7f9933e04a8e139 --- .../example/variables.tf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 fdio.infra.terraform/terraform-aws-elastic-beanstalk-application/example/variables.tf (limited to 'fdio.infra.terraform/terraform-aws-elastic-beanstalk-application/example/variables.tf') diff --git a/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application/example/variables.tf b/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application/example/variables.tf new file mode 100644 index 0000000000..12af1d64c6 --- /dev/null +++ b/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application/example/variables.tf @@ -0,0 +1,11 @@ +variable "region" { + description = "AWS Region." + type = string + default = "us-east-1" +} + +variable "application_description" { + description = "Short description of the application." + type = string + default = "Beanstalk Application" +} -- cgit 1.2.3-korg