-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvariables.tf
52 lines (44 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
variable "name" {
type = string
description = "The name of the parameter."
}
variable "value" {
default = "CHANGE ME"
type = string
description = "The value of the parameter."
}
variable "type" {
default = "SecureString"
type = string
description = "The type of the parameter. Valid types are String, StringList and SecureString."
}
variable "description" {
default = "Managed by Terraform"
type = string
description = "The description of the parameter."
}
variable "key_id" {
default = null
type = string
description = "The KMS key id or arn for encrypting a SecureString."
}
variable "overwrite" {
default = false
type = string
description = "Overwrite an existing parameter."
}
variable "allowed_pattern" {
default = ""
type = string
description = "A regular expression used to validate the parameter value."
}
variable "tags" {
default = {}
type = map(string)
description = "A mapping of tags to assign to the object."
}
variable "enabled" {
default = true
type = bool
description = "Set to false to prevent the module from creating anything."
}