-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvariables.tf
39 lines (33 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
30
31
32
33
34
35
36
37
38
39
variable "name_prefix" {
description = "Path used for each SSM parameter created by the module"
type = string
}
variable "tags" {
type = map(any)
default = {}
}
variable "parameters" {
description = "Non-encrypted parameters"
type = map(any)
default = {}
}
variable "secure_parameters" {
description = "Secure parameters"
type = map(any)
default = {}
}
variable "kms_key_id" {
type = string
description = "The KMS key to use for encryption"
default = ""
}
variable "advanced_tier" {
description = "List of parameter names that should have tier set to Advanced"
type = list(string)
default = []
}
variable "prevent_overwrite" {
description = "[Deprecated - will be removed properly in 6.x] List of parameter names to prevent overwrite for"
type = list(string)
default = []
}