Skip to content

Commit

Permalink
🛂 Add Auth0 client for VS Code (#3452)
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions terraform/auth0/alpha-analytics-moj/clients.tf
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"]
}
6 changes: 6 additions & 0 deletions terraform/auth0/dev-analytics-moj/clients.tf
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"]
}

0 comments on commit 4a61e3f

Please sign in to comment.