generated from terraform-module/terraform-module-blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvariables.tf
39 lines (33 loc) · 952 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 "alias_name" {
description = "The name of the key alias"
type = string
}
variable "deletion_window_in_days" {
description = "The duration in days after which the key is deleted after destruction of the resource"
type = string
default = 30
}
variable "description" {
description = "The description of this KMS key"
type = string
}
variable "iam_policy" {
description = "The policy of the key usage"
type = string
default = null
}
variable "is_enabled" {
description = "(Optional) Specifies whether the key is enabled. Defaults to true."
type = bool
default = true
}
variable "enable_key_rotation" {
description = "(Optional) Specifies whether key rotation is enabled. Defaults to false."
type = bool
default = true
}
variable "tags" {
description = "(Optional) A mapping of tags to assign to the object."
type = map
default = {}
}