-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🛂 Add Auth0 client for VS Code (#3452)
Add Visual Studio Code client configurations for alpha and dev environments Signed-off-by: Jacob Woffenden <[email protected]>
- Loading branch information
Jacob Woffenden
authored
Feb 26, 2024
1 parent
3f4229c
commit 4a61e3f
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
resource "auth0_client" "visual_studio_code" { | ||
name = "Visual Studio Code" | ||
app_type = "regular_web" | ||
callbacks = ["https://*-vscode.tools.analytical-platform.service.justice.gov.uk/callback"] | ||
allowed_logout_urls = ["https://*-vscode.tools.analytical-platform.service.justice.gov.uk"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
resource "auth0_client" "visual_studio_code" { | ||
name = "Visual Studio Code" | ||
app_type = "regular_web" | ||
callbacks = ["https://*-vscode.tools.dev.analytical-platform.service.justice.gov.uk/callback"] | ||
allowed_logout_urls = ["https://*-vscode.tools.dev.analytical-platform.service.justice.gov.uk"] | ||
} |