vars.tf 690 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. variable "rds_sg" {
  2. description = "Security group of RDS endpoints"
  3. type = string
  4. }
  5. variable "public_subnets" {
  6. type = list(string)
  7. }
  8. variable "private_subnets" {
  9. type = list(string)
  10. }
  11. variable "azs" {
  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 "instance_tags" {
  23. description = "Tags for the instance only."
  24. type = map(string)
  25. default = {}
  26. }
  27. variable "reverse_enabled" {
  28. description = "Whether to create the reverse DNS entry."
  29. type = bool
  30. default = true
  31. }