forked from latacora/latacora-service-control-policies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
46 lines (39 loc) · 1.07 KB
/
variables.tf
File metadata and controls
46 lines (39 loc) · 1.07 KB
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
variable "target_ou_id" {
description = "id of the organization unit to attach the policy to"
type = string
}
# Policy Statement Switches
variable "deny_leaving_orgs" {
description = "DenyLeavingOrgs in the OU policy."
default = true
type = bool
}
variable "restrict_member_account_root_users" {
description = "Deny actions to member account root users"
default = true
type = bool
}
variable "deny_cloudtrail_changes" {
description = "Denies access to deleting, updating, or stoppng Cloudtrail"
default = true
type = bool
}
variable "deny_billing_changes" {
description = "Denies access to make billing changes"
default = true
type = bool
}
variable "deny_account_changes" {
description = "Denies access to make account changes"
default = true
type = bool
}
variable "enabled_regions_policy" {
description = "Enable specific regions"
default = true
type = bool
}
variable "enabled_regions" {
description = "List of regions that are allowed"
type = list(string)
}