vars.tf 685 B

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