blob: 3c07178e067e10706aa5012318cf00d0af5b2f9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
variable "region" {
description = "AWS Region."
type = string
default = "us-east-1"
}
variable "environment_application" {
description = "The name of the application, must be unique within account."
type = string
default = "Beanstalk Application"
}
variable "application_description" {
description = "Short description of the application."
type = string
default = "Beanstalk Application"
}
variable "application_name" {
description = "The name of the application, must be unique within account."
type = string
default = "Beanstalk"
}
|