-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
AWS App Mesh: Gateway Route: add exact and regex path to http2 route #24415
Comments
Related: #23041. |
This is supported by AWS for both |
Also, since AWS API uses dedicated http_route {
match {
# The old way
# prefix = "/users"
# The new way
path {
# exact = "/users"
regex = "/users/(\d+)/change-password"
}
}
}
http2_route {
match {
# The old way
# prefix = "/users"
# The new way
path {
# exact = "/users"
regex = "/users/(\d+)/change-password"
}
}
}
|
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. |
Community Note
Description
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: