Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1759617: pkg/terraform/exec/plugins: Bump Terraform AWS to 2.36.0 #2676

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions data/data/aws/vpc/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ resource "aws_vpc_endpoint" "s3" {
aws_route_table.private_routes.*.id,
aws_route_table.default.*.id,
)

tags = var.tags
}

resource "aws_vpc_dhcp_options" "main" {
Expand Down
2 changes: 2 additions & 0 deletions pkg/destroy/aws/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,8 @@ func deleteEC2(session *session.Session, arn arn.ARN, filter Filter, logger logr
return deleteEC2Volume(client, id, logger)
case "vpc":
return deleteEC2VPC(client, elb.New(session), elbv2.New(session), id, logger)
case "vpc-endpoint":
return deleteEC2VPCEndpoint(client, id, logger)
default:
return errors.Errorf("unrecognized EC2 resource type %s", resourceType)
}
Expand Down
Loading