vars.tf 774 B

12345678910111213141516171819202122232425262728293031323334353637
  1. variable "tags" {
  2. type = map(any)
  3. default = {}
  4. }
  5. variable "extra_key_users" {
  6. description = "Extra Jira encryption key users."
  7. type = list(any)
  8. default = []
  9. }
  10. variable "extra_key_attachers" {
  11. description = "Extra Jira encryption key attachers."
  12. type = list(any)
  13. default = []
  14. }
  15. variable "identifier" {
  16. description = "RDS Identifier"
  17. type = string
  18. default = "jira"
  19. }
  20. variable "jira_rds_storage" {
  21. type = number
  22. default = 50
  23. }
  24. variable "subnets" {
  25. type = list(string)
  26. }
  27. # ----------------------------------
  28. # Below this line are variables inherited from higher levels, so they
  29. # do not need to be explicitly passed to this module.
  30. variable "is_legacy" { type = bool }
  31. variable "vpc_id" { type = string }