From faf5c4b7487f43166ef52ddd2ec370ebaaf35ade Mon Sep 17 00:00:00 2001 From: Brage <40792825+Terbau@users.noreply.github.com> Date: Wed, 15 Jan 2025 18:21:47 +0100 Subject: [PATCH] Fix incorrect redirect uris for vengeful vineyard (#1051) --- infra/auth0/main.tf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/infra/auth0/main.tf b/infra/auth0/main.tf index ec67f15c4..caebcdb28 100644 --- a/infra/auth0/main.tf +++ b/infra/auth0/main.tf @@ -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"]