File tree Expand file tree Collapse file tree 3 files changed +15
-11
lines changed
modules/meshcloud-replicator-spp Expand file tree Collapse file tree 3 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -152,6 +152,8 @@ resource "azuread_service_principal_password" "spp_pw" {
152
152
end_date = " 2999-01-01T01:02:03Z" # no expiry
153
153
}
154
154
155
- data "azuread_application" "blueprint_service_principal" {
156
- application_id = " f71766dc-90d9-4b7d-bd9d-4499c4331c3f"
157
- }
155
+ # Terraform does not find the blueprint service principal, even though I find it with
156
+ # ` az ad sp list --filter "appId eq 'f71766dc-90d9-4b7d-bd9d-4499c4331c3f'"`
157
+ # data "azuread_application" "blueprint_service_principal" {
158
+ # application_id = "f71766dc-90d9-4b7d-bd9d-4499c4331c3f"
159
+ # }
Original file line number Diff line number Diff line change @@ -12,7 +12,9 @@ output "service_principal_password" {
12
12
sensitive = true
13
13
}
14
14
15
- output "blueprint_service_principal_object_id" {
16
- description = " Object ID of the BluePrint Service Principal of this AAD."
17
- value = data. azuread_application . blueprint_service_principal . object_id
18
- }
15
+ # Terraform does not find the blueprint service principal, even though I find it with
16
+ # ` az ad sp list --filter "appId eq 'f71766dc-90d9-4b7d-bd9d-4499c4331c3f'"`
17
+ # output "blueprint_service_principal_object_id" {
18
+ # description = "Object ID of the BluePrint Service Principal of this AAD."
19
+ # value = data.azuread_application.blueprint_service_principal.object_id
20
+ # }
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ output "replicator_spp_password" {
10
10
sensitive = true
11
11
}
12
12
13
- output "blueprint_service_principal_object_id" {
14
- description = " Object ID of the BluePrint Service Principal in this AAD."
15
- value = length (module. replicator_spp ) > 0 ? module. replicator_spp [0 ]. azuread_application . blueprint_service_principal . object_id : null
16
- }
13
+ # output "blueprint_service_principal_object_id" {
14
+ # description = "Object ID of the BluePrint Service Principal in this AAD."
15
+ # value = length(module.replicator_spp) > 0 ? module.replicator_spp[0].azuread_application.blueprint_service_principal.object_id : null
16
+ # }
17
17
18
18
output "kraken_spp" {
19
19
description = " Kraken Service Principal."
You can’t perform that action at this time.
0 commit comments