12345678910111213141516171819202122232425262728293031323334353637 |
- variable "tags" {
- type = map(any)
- default = {}
- }
- variable "extra_key_users" {
- description = "Extra Jira encryption key users."
- type = list(any)
- default = []
- }
- variable "extra_key_attachers" {
- description = "Extra Jira encryption key attachers."
- type = list(any)
- default = []
- }
- variable "identifier" {
- description = "RDS Identifier"
- type = string
- default = "jira"
- }
- variable "jira_rds_storage" {
- type = number
- default = 50
- }
- variable "subnets" {
- type = list(string)
- }
- # ----------------------------------
- # Below this line are variables inherited from higher levels, so they
- # do not need to be explicitly passed to this module.
- variable "is_legacy" { type = bool }
- variable "vpc_id" { type = string }
|