vars.tf 630 B

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