Skip to content

Commit 639e8c9

Browse files
author
Felix Zieger
committed
Switch IDP default to false and remove output from examples
The default IAM setup now uses SCIM user provisioning, so we do no longer look up users via a dedicated service principal.
1 parent 159043a commit 639e8c9

File tree

4 files changed

+1
-25
lines changed

4 files changed

+1
-25
lines changed

examples/azure-integration-preprovisioned-subscriptions/main.tf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,4 @@ module "meshplatform" {
1818
mgmt_group_name = "<MANAGEMENT_GROUP_NAME>|<MANAGEMENT_GROUP_UUID>"
1919

2020
additional_permissions = ["Microsoft.Subscription/rename/action"]
21-
22-
# If you want to integrate your AAD as SSO for meshStack, set the below value to true to create the necessary Application.
23-
idplookup_enabled = false
2421
}

examples/azure-integration-preprovisioned-subscriptions/outputs.tf

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,6 @@ output "kraken_service_principal_password" {
2020
sensitive = true
2121
}
2222

23-
output "idp_lookup_service_principal" {
24-
description = "IDP Lookup Service Principal."
25-
value = module.meshplatform.idp_lookup_service_principal
26-
}
27-
28-
output "idp_lookup_service_principal_password" {
29-
description = "Password for IDP Lookup Service Principal."
30-
value = module.meshplatform.idp_lookup_service_principal_password
31-
}
32-
3323
output "uami_blueprint_user_principal" {
3424
description = "UAMI Blueprint Assignment Service Principal."
3525
value = module.meshplatform.uami_blueprint_user_principal

examples/basic-azure-integration/outputs.tf

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@ output "kraken_service_principal_password" {
2020
sensitive = true
2121
}
2222

23-
output "idp_lookup_service_principal" {
24-
description = "IDP Lookup Service Principal."
25-
value = module.meshplatform.idp_lookup_service_principal
26-
}
27-
28-
output "idp_lookup_service_principal_password" {
29-
description = "Password for IDP Lookup Service Principal."
30-
value = module.meshplatform.idp_lookup_service_principal_password
31-
sensitive = true
32-
}
33-
3423
output "uami_blueprint_user_principal" {
3524
description = "UAMI Blueprint Assignment Service Principal."
3625
value = module.meshplatform.uami_blueprint_user_principal

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ variable "kraken_enabled" {
3333

3434
variable "idplookup_enabled" {
3535
type = bool
36-
default = true
36+
default = false
3737
description = "Whether to create idplookup Service Principal or not."
3838
}
3939

0 commit comments

Comments
 (0)