-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinput.tf
57 lines (50 loc) · 1.33 KB
/
input.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
52
53
54
55
56
57
variable "prefix" {
description = "Prefix to be used when creating resources"
type = string
}
variable "instance_list" {
description = "Instance(s) to be switched started, stopped, rebooted or terminated"
type = list(string)
default = []
}
variable "schedules" {
description = "Schedules when the actions over the instance(s)"
type = object({
start = list(string)
stop = list(string)
reboot = list(string)
terminate = list(string)
switch = list(string)
})
default = {
start = []
stop = []
reboot = []
terminate = []
switch = []
}
}
variable "role_permissions_boundary" {
type = string
description = "ARN of the policy that is used to set the permissions boundary for the role."
default = null
}
variable "role_path" {
type = string
description = "Path to the role."
default = "/"
}
variable "policies_path" {
type = string
description = "Path in which to create the policy."
default = "/"
}
variable "event_bus_name" {
description = "The event bus to associate with the created rules. If you omit this, the default event bus is used."
default = null
}
variable "tags" {
description = "Custom tags to be added to the created resources"
type = map(string)
default = {}
}