Skip to content

Commit

Permalink
Remove deprecated vpc argument to aws_eip (#80)
Browse files Browse the repository at this point in the history
* Update aws_eip VPC syntax to non-deprecated version

* Remove domain
  • Loading branch information
ascandella authored Sep 28, 2023
1 parent 11e8af6 commit 0141b69
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions modules/terraform-aws-alternat/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ locals {
resource "aws_eip" "nat_instance_eips" {
count = local.reuse_nat_instance_eips ? 0 : length(var.vpc_az_maps)

vpc = true
tags = merge(var.tags, {
"Name" = "alternat-instance-${count.index}"
})
Expand Down Expand Up @@ -394,7 +393,6 @@ resource "aws_eip" "nat_gateway_eips" {
: obj.az => obj.public_subnet_id
if var.create_nat_gateways
}
vpc = true
tags = merge(var.tags, {
"Name" = "alternat-gateway-eip"
})
Expand Down

0 comments on commit 0141b69

Please sign in to comment.