1234567891011121314151617181920212223242526272829303132333435 |
- variable "stack_name" {
- default = ""
- }
- variable "vpc_id" {
- default = ""
- }
- variable "alb_secgroups" {
- default = []
- }
- variable "app_subnets" {
- default = []
- }
- variable "azs" {
- default = []
- }
- variable "asg_min" {
- description = "Min numbers of servers in ASG"
- default = "1"
- }
- variable "asg_max" {
- description = "Max numbers of servers in ASG"
- default = "2"
- }
- variable "asg_desired" {
- description = "Desired numbers of servers in ASG"
- default = "1"
- }
|