Skip to content

Commit 96ce8fa

Browse files
fixed-tf-depreciation-and-added-benchmark-3
1 parent bb76ad3 commit 96ce8fa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

aws_sra_examples/terraform/common/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ resource "local_file" "config_file_creation" {
145145
########################################################################
146146
disable_security_hub = false
147147
cis_standard_version = "1.4.0"
148+
cis_standard_version = "3.0.0"
148149
compliance_frequency = "7"
149150
securityhub_control_tower_regions_only = true
150151
enable_cis_standard = false

aws_sra_examples/terraform/solutions/security_hub/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ variable "sra_solution_name" {
3737
variable "cis_standard_version" {
3838
description = "CIS Standard Version"
3939
type = string
40-
default = "3.0.0"
40+
default = "1.2.0"
4141
validation {
4242
condition = contains(["NONE", "1.2.0", "1.4.0", "3.0.0"], var.cis_standard_version) # Changed to var.cis_standard_version
4343
error_message = "Valid values for cis_standard_version are NONE, 1.2.0, 1.4.0, or 3.0.0."

0 commit comments

Comments
 (0)