-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
35 lines (30 loc) · 865 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
variable "parameters" {
description = "map of parameters for parameter store"
type = any
default = {}
}
variable "tags" {
description = "Specifies a tags"
type = any
default = {}
}
variable "file_path" {
description = "file to parse"
default = null
type = string
}
variable "parameter_prefix" {
description = "prefix for parameter names. For example you wanna split dev/prod parameters so you wanna add /service_name/development/ prefix before parameter name"
default = null
type = string
}
variable "unlocked" {
description = "if true - sets the ignore lifecycle policy and disable terraform managing the version of the resource"
type = bool
default = false
}
variable "data" {
description = "data to store in parameter store"
type = bool
default = false
}