-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
43 lines (35 loc) · 981 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
40
41
42
43
variable "automatically_after_days" {
description = "Number of days between automatic scheduled rotations of the secret"
default = 1
}
variable "description" {
description = "Description of the secret"
default = null
}
variable "kms_key_id" {
description = "AWS KMS customer master key (CMK) to be used to encrypt the secret"
default = null
}
variable "lambda_function_name" {
description = "Name of lambda function used by Secrets Manager for key rotation"
default = null
}
variable "name" {
description = "Secret name"
}
variable "policy" {
description = "Path of file containing a valid policy document"
default = null
}
variable "recovery_window_in_days" {
description = "Number of days AWS waits before deleting the secret"
default = 0
}
variable "service" {
description = "Service name"
}
variable "tags" {
description = "User-defined tags attached to the secret"
type = map(string)
default = {}
}