2019-07-25 12:53:20 -04:00
|
|
|
variable "name" {
|
|
|
|
description = "Name of this environment to be used in all resources."
|
|
|
|
}
|
|
|
|
|
2019-07-25 17:05:05 -04:00
|
|
|
variable "stage" {
|
|
|
|
description = "Name of stage, used for DNS entry for this environment."
|
|
|
|
}
|
|
|
|
|
2019-07-25 12:53:20 -04:00
|
|
|
variable "gandi_zone_id" {
|
|
|
|
description = "ID of the zone in Gandi DNS registrar."
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "dns_domain" {
|
|
|
|
description = "Name of domain for this environment."
|
|
|
|
}
|
|
|
|
|
2019-07-25 17:05:05 -04:00
|
|
|
variable "stack_name" {
|
|
|
|
description = "Name of application stack for ElasticBeanstalk."
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "keypair_name" {
|
|
|
|
description = "Name of the AWS key pair for SSH access."
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "max_availability_zones" {
|
|
|
|
description = "Maximum number of availability zones that can be used in Subnet."
|
|
|
|
default = "2"
|
2019-07-25 12:53:20 -04:00
|
|
|
}
|