-
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.
Signed-off-by: Jacob Woffenden <jacob.woffenden@digital.justice.gov.uk>
- Loading branch information
Jacob Woffenden
authored
Nov 20, 2023
1 parent
8bf702e
commit 25e7ea9
Showing
4 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
6 changes: 4 additions & 2 deletions
6
terraform/auth0/ministryofjustice-data-platform-development/auth0-clients.tf
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
5 changes: 5 additions & 0 deletions
5
terraform/auth0/ministryofjustice-data-platform-development/auth0-custom-domain.tf
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,5 @@ | ||
resource "auth0_custom_domain" "main" { | ||
domain = "auth.development.data-platform.service.justice.gov.uk" | ||
type = "auth0_managed_certs" | ||
tls_policy = "recommended" | ||
} |
11 changes: 11 additions & 0 deletions
11
terraform/auth0/ministryofjustice-data-platform/auth0-clients.tf
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,11 @@ | ||
resource "auth0_client" "data_platform_control_panel" { | ||
name = "data-platform-control-panel" | ||
app_type = "regular_web" | ||
description = "Data Platform Control Panel" | ||
logo_uri = "https://assets.data-platform.service.justice.gov.uk/assets/justice-digital-logo.png" | ||
} | ||
|
||
resource "auth0_connection_client" "data_platform_control_panel_entra_id" { | ||
client_id = auth0_client.data_platform_control_panel.id | ||
connection_id = auth0_connection.justiceuk_data_platform_auth0_ministryofjustice_production.id | ||
} |
5 changes: 5 additions & 0 deletions
5
terraform/auth0/ministryofjustice-data-platform/auth0-custom-domain.tf
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,5 @@ | ||
resource "auth0_custom_domain" "main" { | ||
domain = "auth.data-platform.service.justice.gov.uk" | ||
type = "auth0_managed_certs" | ||
tls_policy = "recommended" | ||
} |