-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathvariables.tf
36 lines (32 loc) · 1.05 KB
/
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
30
31
32
33
34
35
36
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 = "SecureString"
tier = "Standard"
overwrite = "false"
allowed_pattern = null
data_type = "text"
}
}
variable "ignore_value_changes" {
type = bool
description = "Whether to ignore future external changes in paramater values"
default = false
}