From 61cf4d230c3bd88cd0a6f3782796cc3949485b72 Mon Sep 17 00:00:00 2001 From: pmikus Date: Wed, 25 Jan 2023 12:54:28 +0000 Subject: feat(terraform): Refactor application version deploy Signed-off-by: pmikus Change-Id: I065a018745a82762c816de96d8a69116416aa0ce --- .../variables.tf | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) (limited to 'fdio.infra.terraform/terraform-aws-elastic-beanstalk-application-version/variables.tf') 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" } -- cgit 1.2.3-korg