Revert "fix(jobspec): Delete ipsec nfv density tests"
[csit.git] / fdio.infra.terraform / terraform-aws-elastic-beanstalk-application-version / variables.tf
1 variable "application_bucket" {
2   description = "The name of the bucket."
3   type        = string
4   default     = "elasticbeanstalk-eu-central-1"
5 }
6
7 variable "application_description" {
8   description = "Short description of the Application Version."
9   type        = string
10   default     = "Beanstalk Application"
11 }
12
13 variable "application_name" {
14   description = "Name of the Beanstalk Application."
15   type        = string
16   default     = "beanstalk"
17 }
18
19 variable "application_name_version" {
20   description = "Version of the Beanstalk Application."
21   type        = string
22   default     = "beanstalk-1"
23 }
24
25 variable "application_source" {
26   description = "The source file with application code."
27   type        = string
28   default     = "app.zip"
29 }