blob: 6ac2ae7bfeaed3d8b444a2983dde72bc4e6c0a80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
variable "application_description" {
description = "Short description of the Application Version."
type = string
default = "Beanstalk Application"
}
variable "application_name" {
description = "Name of the Beanstalk Application the version is associated."
type = string
default = "Beanstalk"
}
variable "application_version_name" {
description = "Unique name for the this Application Version."
type = string
default = "Beanstalk Version"
}
|