Skip to content

Commit

Permalink
Fix incorrect redirect uris for vengeful vineyard (#1051)
Browse files Browse the repository at this point in the history
  • Loading branch information
Terbau authored Jan 15, 2025
1 parent 2640703 commit faf5c4b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion infra/auth0/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,16 @@ resource "auth0_client" "vengeful_vineyard_frontend" {
"stg" = [
"https://staging.vinstraff.no",
"https://staging.vinstraff.no/docs/oauth2-redirect",
"http://localhost:3000",
"http://localhost:8000",
"http://localhost:8000/docs/oauth2-redirect",
]
"prd" = [
"https://vinstraff.no",
"https://vinstraff.no/docs/oauth2-redirect",
"http://localhost:3000",
"http://localhost:8000",
"http://localhost:3000/docs/oauth2-redirect",
"http://localhost:8000/docs/oauth2-redirect",
]
}[terraform.workspace]
grant_types = ["authorization_code", "refresh_token"]
Expand Down

0 comments on commit faf5c4b

Please sign in to comment.