vars.tf 593 B

12345678910111213141516171819202122232425262728293031323334
  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 "reverse_enabled" {
  24. description = "Whether to create the reverse DNS entry."
  25. type = bool
  26. default = true
  27. }