inputs.tf 497 B

1234567891011121314151617181920212223242526272829303132333435
  1. variable "stack_name" {
  2. default = ""
  3. }
  4. variable "vpc_id" {
  5. default = ""
  6. }
  7. variable "alb_secgroups" {
  8. default = []
  9. }
  10. variable "app_subnets" {
  11. default = []
  12. }
  13. variable "azs" {
  14. default = []
  15. }
  16. variable "asg_min" {
  17. description = "Min numbers of servers in ASG"
  18. default = "1"
  19. }
  20. variable "asg_max" {
  21. description = "Max numbers of servers in ASG"
  22. default = "2"
  23. }
  24. variable "asg_desired" {
  25. description = "Desired numbers of servers in ASG"
  26. default = "1"
  27. }