-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
51 lines (43 loc) · 1.22 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
variable "admin_principals" {
description = "Principals allowed to peform admin actions (default: current account)"
type = list(string)
default = null
}
variable "domain" {
type = string
description = "The domain from which emails are sent"
}
variable "name" {
type = string
description = "Name for created resources"
}
variable "tags" {
description = "Tags which should be applied to created resources"
default = {}
type = map(string)
}
variable "identity_account_id" {
type = string
description = "ID of account that is authorized to send emails (default: current account)"
default = null
}
variable "read_principals" {
description = "Principals allowed to read the secret (default: current account)"
type = list(string)
default = null
}
variable "trust_tags" {
description = "Tags required on principals accessing the secret"
type = map(string)
default = {}
}
variable "subnet_ids" {
description = "Subnets in which the rotation function should run"
type = list(string)
default = []
}
variable "vpc_id" {
description = "VPC in which the rotation function should run"
type = string
default = null
}