-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathvariables.tf
More file actions
19 lines (16 loc) · 690 Bytes
/
variables.tf
File metadata and controls
19 lines (16 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
variable "parameter_root_name" {
description = "The prefix or root parameter that you want to allow access to."
default = ""
}
variable "kms_key" {
description = "The arn of the KMS key that you want to allow access to. If empty it uses a wildcard resource (`*`)."
default = ""
}
variable "region" {
description = "The region of the parameter store value that you want to allow access to. If none supplied, it uses the current region of the provider."
default = ""
}
variable "account_id" {
description = "The account id of the parameter store you want to allow access to. If none supplied, it uses the current account id of the provider."
default = ""
}