vars.tf 567 B

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