-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Support Gateway Load Balancers, Gateway Load Balancer VPC Endpoint Services, and VPC Endpoint Routes #16129
Comments
Hey @bflad do you plan to add support for enable appliance mode in the Transit gateway attachment as well. |
Initial support for Gateway Load Balancer functionality has been merged and will release with version 3.15.0 of the Terraform AWS Provider, later this week. @nckbnv I would suggest creating a separate feature request. 👍 |
This has been released in version 3.15.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
This needs to be reopened again. You will need to modify the code for the |
@mabdelghany thank you for the heads up. Please create a new issue and we will triage as soon as possible. |
@bflad I just found another bug in the resources This is my code: resource "aws_lb" "gwlb" {
name = "${var.prefix}-firewall-gateway-lb"
load_balancer_type = "gateway"
subnets = var.subnet_ids
enable_cross_zone_load_balancing = true
tags = merge(
var.default_tags,
map(
"Name", "${var.prefix}-firewall-gateway-lb"
)
)
} and everytime, I try to plan, I get this:
Now, per your suggestion, I opened another issue (#16228 (comment)) for the listeners issue mentioned above. Should I update that issue or open up a brand new issue altogether? |
It is a separate problem and will require a different fix, so please create a new issue. Thanks. I can likely have that fix submitted later today. |
Done (#16311) |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Community Note
Description
AWS has introduced Gateway Load Balancers today.
Affected Resource(s)
route
configuration blockvpc_endpoint_id
argumentload_balancer_type
argument value ofgateway
protocol
argument value ofGENEVE
vpc_endpoint_id
argumentroute
configuration blockvpc_endpoint_id
argumentvpc_endpoint_type
argument value ofGatewayLoadBalancer
gateway_load_balancer_arns
argumentExample Terraform Configuration
References
The text was updated successfully, but these errors were encountered: