Skip to content

Commit 17d4833

Browse files
Felix Ziegerfelixzieger
authored andcommitted
chore: remove blueprint module
1 parent 3a6539f commit 17d4833

File tree

6 files changed

+0
-146
lines changed

6 files changed

+0
-146
lines changed

main.tf

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,6 @@ module "idp_lookup_service_principal" {
4242
service_principal_name_suffix = var.service_principal_name_suffix
4343
}
4444

45-
module "uami_blueprint_user_principal" {
46-
count = length(var.subscriptions)
47-
source = "./modules/uami-blueprint-user-principal/"
48-
49-
service_principal_name_suffix = var.service_principal_name_suffix
50-
subscriptions = var.subscriptions
51-
}
52-
53-
data "azuread_client_config" "current" {}
54-
5545
# facilitate migration from v0.1.0 of the module
5646
moved {
5747
from = module.replicator_spp

modules/uami-blueprint-user-principal/README.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

modules/uami-blueprint-user-principal/module.tf

Lines changed: 0 additions & 45 deletions
This file was deleted.

modules/uami-blueprint-user-principal/outputs.tf

Lines changed: 0 additions & 12 deletions
This file was deleted.

modules/uami-blueprint-user-principal/variables.tf

Lines changed: 0 additions & 9 deletions
This file was deleted.

outputs.tf

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ output "replicator_service_principal_password" {
1010
sensitive = true
1111
}
1212

13-
# output "blueprint_service_principal_object_id" {
14-
# description = "Object ID of the BluePrint Service Principal in this AAD."
15-
# value = length(module.replicator_service_principal) > 0 ? module.replicator_service_principal[0].azuread_application.blueprint_service_principal.object_id : null
16-
# }
17-
1813
output "metering_service_principal" {
1914
description = "Metering Service Principal."
2015
value = length(module.metering_service_principal) > 0 ? module.metering_service_principal[0].credentials : null
@@ -26,28 +21,6 @@ output "metering_service_principal_password" {
2621
sensitive = true
2722
}
2823

29-
output "idp_lookup_service_principal" {
30-
description = "IDP Lookup Service Principal."
31-
value = length(module.idp_lookup_service_principal) > 0 ? module.idp_lookup_service_principal[0].service_principal : null
32-
}
33-
34-
output "idp_lookup_service_principal_password" {
35-
description = "Password for IDP Lookup Service Principal."
36-
value = length(module.idp_lookup_service_principal) > 0 ? module.idp_lookup_service_principal[0].service_principal_password : null
37-
sensitive = true
38-
}
39-
40-
output "uami_blueprint_user_principal" {
41-
description = "UAMI Blueprint Assignment Service Principal."
42-
value = length(module.uami_blueprint_user_principal) > 0 ? module.uami_blueprint_user_principal[0].service_principal : null
43-
}
44-
45-
output "uami_blueprint_user_principal_password" {
46-
description = "Password for UAMI Blueprint Assignment Service Principal."
47-
value = length(module.uami_blueprint_user_principal) > 0 ? module.uami_blueprint_user_principal[0].service_principal_password : null
48-
sensitive = true
49-
}
50-
5124
output "azure_ad_tenant_id" {
5225
description = "The Azure AD tenant id."
5326
value = data.azuread_client_config.current.tenant_id

0 commit comments

Comments
 (0)