vars.tf 895 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. variable "extra_key_users" {
  2. description = "Extra encryption key users."
  3. type = list(any)
  4. default = []
  5. }
  6. variable "extra_key_attachers" {
  7. description = "Extra encryption key attachers."
  8. type = list(any)
  9. default = []
  10. }
  11. variable "identifier" {
  12. description = "RDS Identifier"
  13. type = string
  14. default = "rhsso"
  15. }
  16. variable "rds_storage" {
  17. type = number
  18. default = 100
  19. }
  20. variable "azs" {
  21. type = list(string)
  22. }
  23. variable "private_subnets" {
  24. type = list(string)
  25. }
  26. variable "public_subnets" {
  27. type = list(string)
  28. }
  29. variable "vpc_id" {
  30. type = string
  31. }
  32. variable "tags" {
  33. description = "Tags to add to the resource (in addition to global standard tags)"
  34. type = map(any)
  35. default = {}
  36. }
  37. variable "reverse_enabled" {
  38. description = "Whether to create the reverse DNS entry."
  39. type = bool
  40. default = true
  41. }