vars.tf 519 B

1234567891011121314151617181920212223242526272829303132333435
  1. variable "elb_attachments" {
  2. type = list(any)
  3. }
  4. variable "prefix" {
  5. description = "Prefix for Instance Names"
  6. type = string
  7. }
  8. variable "azs" {
  9. type = list(string)
  10. }
  11. variable "public_subnets" {
  12. type = list(string)
  13. }
  14. variable "private_subnets" {
  15. type = list(string)
  16. }
  17. variable "vpc_id" {
  18. type = string
  19. }
  20. variable "vpc_cidr" {
  21. type = string
  22. }
  23. variable "tags" {
  24. description = "Tags to add to the resource (in addition to global standard tags)"
  25. type = map(any)
  26. default = {}
  27. }