aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/terraform-aws-elastic-beanstalk-application-version/variables.tf
blob: 8d7dd45755d118cee122b6a4a8979ac87b950aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
  default     = "Beanstalk Application"
}

variable "application_name" {
  description = "Name of the Beanstalk Application."
  type        = string
  default     = "beanstalk"
}

variable "application_name_version" {
  description = "Version of the Beanstalk Application."
  type        = string
  default     = "beanstalk-1"
}

variable "application_source" {
  description = "The source file with application code."
  type        = string
  default     = "app.zip"
}