mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
25 lines
No EOL
652 B
HCL
25 lines
No EOL
652 B
HCL
// Define application variables
|
|
variable "demo_beanstalk_application_name" {
|
|
type = "string"
|
|
default = ""
|
|
description = "AWS beanstalk application name"
|
|
}
|
|
|
|
variable "demo_beanstalk_application_description" {
|
|
type = "string"
|
|
default = ""
|
|
description = "AWS beanstalk application description"
|
|
}
|
|
|
|
// Define environment variables
|
|
variable "demo_beanstalk_environment_name" {
|
|
type = "string"
|
|
default = ""
|
|
description = "AWS beanstalk environment name"
|
|
}
|
|
|
|
variable "demo_beanstalk_environment_platform" {
|
|
type = "string"
|
|
default = "64bit Amazon Linux 2015.03 v2.0.3 running Go 1.4"
|
|
description = "AWS beanstalk environment platform"
|
|
} |