Skip to content

Commit 040a9f1

Browse files
author
Michael Kania
authored
Merge pull request #30 from trussworks/mk-default-cloudtrail-enabled
Have the cloudtrail-enabled check default to true.
2 parents 15a265c + fb1574f commit 040a9f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module "aws_config" {
5454
| check\_approved\_amis\_by\_tag | Enable approved-amis-by-tag rule | string | `"false"` | no |
5555
| check\_cloud\_trail\_encryption | Enable cloud-trail-encryption-enabled rule | string | `"false"` | no |
5656
| check\_cloud\_trail\_log\_file\_validation | Enable cloud-trail-log-file-validation-enabled rule | string | `"false"` | no |
57-
| check\_cloudtrail\_enabled | Enable cloudtrail-enabled rule | string | `"false"` | no |
57+
| check\_cloudtrail\_enabled | Enable cloudtrail-enabled rule | string | `"true"` | no |
5858
| check\_ec2\_encrypted\_volumes | Enable ec2-encrypted-volumes rule | string | `"true"` | no |
5959
| check\_ec2\_volume\_inuse\_check | Enable ec2-volume-inuse-check rule | string | `"true"` | no |
6060
| check\_eip\_attached | Enable eip-attached rule | string | `"false"` | no |

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ variable "check_multi_region_cloud_trail" {
101101

102102
variable "check_cloudtrail_enabled" {
103103
description = "Enable cloudtrail-enabled rule"
104-
default = false
104+
default = true
105105
}
106106

107107
variable "check_cloud_trail_encryption" {
@@ -195,4 +195,4 @@ variable "check_rds_snapshots_public_prohibited" {
195195
variable "check_s3_bucket_public_write_prohibited" {
196196
description = "Enable s3-bucket-public-write-prohibited rule"
197197
default = true
198-
}
198+
}

0 commit comments

Comments
 (0)