Skip to content

Commit f86121b

Browse files
authored
Merge branch 'main' into master
2 parents 780cfe3 + 5dd574d commit f86121b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

eni.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,5 @@ resource "aws_network_interface_attachment" "additional" {
2626
resource "aws_eip" "additional" {
2727
#bridgecrew:skip=BC_AWS_NETWORKING_48: Skiping `Ensure all EIP addresses allocated to a VPC are attached to EC2 instances` because it is incorrectly flagging that this instance does not belong to a VPC even though subnet_id is configured.
2828
count = local.additional_ips_count
29-
domain = "vpc"
3029
network_interface = aws_network_interface.additional[count.index].id
3130
}

main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ resource "aws_eip" "default" {
180180
#bridgecrew:skip=BC_AWS_NETWORKING_48: Skiping `Ensure all EIP addresses allocated to a VPC are attached to EC2 instances` because it is incorrectly flagging that this instance does not belong to a VPC even though subnet_id is configured.
181181
count = var.associate_public_ip_address && var.assign_eip_address && module.this.enabled ? 1 : 0
182182
instance = one(aws_instance.default[*].id)
183-
domain = "vpc"
184183
tags = module.this.tags
185184
}
186185

0 commit comments

Comments
 (0)