vars.tf 540 B

12345678910111213141516171819202122232425262728293031
  1. variable "public_subnets" {
  2. type = list(string)
  3. }
  4. variable "azs" {
  5. type = list(string)
  6. }
  7. variable "vpc_id" {
  8. type = string
  9. }
  10. variable "tags" {
  11. description = "Tags to add to the resource (in addition to global standard tags)"
  12. type = map(any)
  13. default = {}
  14. }
  15. variable "instance_tags" {
  16. description = "Tags for the instance only."
  17. type = map(string)
  18. default = {}
  19. }
  20. variable "reverse_enabled" {
  21. description = "Whether to create the reverse DNS entry."
  22. type = bool
  23. default = true
  24. }