Skip to content

Commit 1749577

Browse files
swbsfswbsf
and
swbsf
authored
Removing rules on default VPC (#19)
Co-authored-by: swbsf <[email protected]>
1 parent 597d923 commit 1749577

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

network.tf

+5-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ resource "aws_vpc" "quortex" {
3232
# NOTE: The usage of the specific kubernetes.io/cluster/* resource tags below are required for EKS and Kubernetes to discover and manage networking resources.
3333
}
3434

35+
# Remove all rules on default security group to be compliant with https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards-fsbp-controls.html#fsbp-ec2-2
36+
resource "aws_default_security_group" "quortex" {
37+
vpc_id = aws_vpc.quortex.id
38+
}
39+
3540
resource "aws_vpc_ipv4_cidr_block_association" "secondary" {
3641
for_each = var.vpc_secondary_cidrs
3742
vpc_id = aws_vpc.quortex.id
@@ -171,5 +176,3 @@ resource "aws_route_table_association" "quortex_private" {
171176
subnet_id = aws_subnet.quortex[each.key].id
172177
route_table_id = aws_route_table.quortex_private[each.key].id
173178
}
174-
175-

0 commit comments

Comments
 (0)