Skip to content

Commit

Permalink
fix: IdP listener rule for well-known config (#763)
Browse files Browse the repository at this point in the history
Update the IdP load balancer listener rule to also send requests to
the /.well-known/openid-configuration endpoint to the HTTP1 target group.
  • Loading branch information
patheard authored Aug 6, 2024
1 parent e49bcb6 commit 0e0010c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/idp/lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ resource "aws_alb_listener_rule" "idp_protocol_version" {

condition {
path_pattern {
values = ["/*/v?/*"] # REST API endpoint pattern `/type/v1/some/endpoint/go/now`
values = ["/*/v?/*", "/.well-known/openid-configuration"] # REST API endpoints
}
}
}
Expand Down

0 comments on commit 0e0010c

Please sign in to comment.