-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
46 lines (39 loc) · 1.06 KB
/
variables.tf
File metadata and controls
46 lines (39 loc) · 1.06 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
}
variable "require_imdsv2" {
description = "This will only allow ec2 instances to be created with IMDSv2 enabled"
default = true
type = bool
}
variable "deny_imds_change" {
description = "Disallows changes to IMDS on instances"
default = true
type = bool
}
variable "require_ebs_encryption" {
description = "Requires EBS volumes and snapshots to be encrypted"
default = true
type = bool
}
variable "require_s3_object_encryption" {
description = "Requires s3 object encryption"
default = true
type = bool
}
variable "require_s3_bucket_https" {
description = "Requires https on s3 buckets"
default = true
type = bool
}
variable "deny_s3_public_access" {
description = "Denies public access to s3 buckets"
default = true
type = bool
}
variable "require_rds_encryption" {
description = "Requires RDS encryption"
default = true
type = bool
}