You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tf-modules/security/kms-key/variables.tf

18 lines
471 B
HCL

variable "usage_roles" {
type = list
default = []
description = "IAM Role names which can use this key to decrypt secrets"
}
variable "app_name" {
description = "Name of application SSM secrets are for"
}
variable "administrator_roles" {
description = "IAM Role name of AWS account administrators"
type = list
}
variable "tags" {
default = {}
type = map
description = "Optional set of tags to apply to the infrastructure"
}