vars.tf 731 B

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