vars.tf 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. variable "tags" {
  2. type = map
  3. default = { }
  4. }
  5. variable extra_key_users {
  6. description = "Extra Jira encryption key users."
  7. type = list
  8. default = [ ]
  9. }
  10. variable extra_key_attachers {
  11. description = "Extra Jira encryption key attachers."
  12. type = list
  13. default = [ ]
  14. }
  15. variable identifier {
  16. description = "RDS Identifier"
  17. type = string
  18. default = "jira"
  19. }
  20. variable instance_type {
  21. type = string
  22. default = "db.t3.medium"
  23. }
  24. variable jira_rds_storage {
  25. type = number
  26. default = 50
  27. }
  28. variable subnets {
  29. type = list(string)
  30. }
  31. # ----------------------------------
  32. # Below this line are variables inherited from higher levels, so they
  33. # do not need to be explicitly passed to this module.
  34. variable "is_legacy" { type = bool }
  35. variable "common_services_account" { type = string }
  36. variable "standard_tags" { type = map }
  37. variable "account_list" { type = list }
  38. variable "aws_account_id" { type = string }
  39. variable "aws_partition" { type = string }
  40. variable "vpc_id" { type = string }
  41. variable "environment" { type = string }
  42. variable "cidr_map" { type = map }
  43. variable "instance_termination_protection" { type = bool }