forked from cloudposse/terraform-aws-ssm-parameter-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
29 lines (26 loc) · 882 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
variable "parameter_read" {
type = list(string)
description = "List of parameters to read from SSM. These must already exist otherwise an error is returned. Can be used with `parameter_write` as long as the parameters are different."
default = []
}
variable "parameter_write" {
type = list(map(string))
description = "List of maps with the parameter values to write to SSM Parameter Store"
default = []
}
variable "kms_arn" {
type = string
default = ""
description = "The ARN of a KMS key used to encrypt and decrypt SecretString values"
}
variable "parameter_write_defaults" {
type = map(any)
description = "Parameter write default settings"
default = {
description = null
type = "SecretString"
tier = "Standard"
overwrite = "false"
allowed_pattern = null
}
}