Skip to content

Commit

Permalink
added checkov skip
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed Oct 14, 2023
1 parent 1763393 commit 236b864
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ resource "aws_vpc" "this" {
enable_dns_support = true
# https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/vpc#enable_dns_hostnames
enable_dns_hostnames = true
#checkov:skip=CKV2_AWS_11: Not creating a flow log for this VPC
tags = {
"Name" = "app-4"
}
Expand Down Expand Up @@ -40,7 +41,7 @@ resource "aws_route_table" "private" {
resource "aws_route_table" "public" {
vpc_id = aws_vpc.this.id
tags = {
"Name" = "app-4-public-route-table"
"Name" = "app-4-public"
}
}
resource "aws_route_table_association" "private" {
Expand Down

0 comments on commit 236b864

Please sign in to comment.