3c07178e067e10706aa5012318cf00d0af5b2f9f
[csit.git] / fdio.infra.terraform / terraform-aws-elastic-beanstalk-environment / example / variables.tf
1 variable "region" {
2   description = "AWS Region."
3   type        = string
4   default     = "us-east-1"
5 }
6
7 variable "environment_application" {
8   description = "The name of the application, must be unique within account."
9   type        = string
10   default     = "Beanstalk Application"
11 }
12
13 variable "application_description" {
14   description = "Short description of the application."
15   type        = string
16   default     = "Beanstalk Application"
17 }
18
19 variable "application_name" {
20   description = "The name of the application, must be unique within account."
21   type        = string
22   default     = "Beanstalk"
23 }