Skip to content

Commit 1d3e6da

Browse files
committed
feat: update azurem and azuread version
1 parent 4c420be commit 1d3e6da

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

modules/meshcloud-idp-lookup-service-principal/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ output "service_principal" {
22
description = "Service Principal application id and object id"
33
value = {
44
object_id = azuread_service_principal.meshcloud_idp_lookup.id
5-
app_id = azuread_service_principal.meshcloud_idp_lookup.application_id
5+
app_id = azuread_service_principal.meshcloud_idp_lookup.client_id
66
password = "Execute `terraform output idp_lookup_service_principal_password` to see the password"
77
}
88
}

modules/meshcloud-metering-service-principal/module.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ resource "time_rotating" "replicator_secret_rotation" {
9393
}
9494

9595
resource "azuread_application_password" "application_pw" {
96-
application_id = azuread_application.meshcloud_metering.client_id
96+
application_id = azuread_application.meshcloud_metering.id
9797
rotate_when_changed = {
9898
rotation = time_rotating.replicator_secret_rotation.id
9999
}

modules/meshcloud-replicator-service-principal/module.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ resource "time_rotating" "replicator_secret_rotation" {
148148
rotation_days = 365
149149
}
150150
resource "azuread_application_password" "application_pw" {
151-
application_id = azuread_application.meshcloud_replicator.client_id
151+
application_id = azuread_application.meshcloud_replicator.id
152152
rotate_when_changed = {
153153
rotation = time_rotating.replicator_secret_rotation.id
154154
}

modules/meshcloud-sso/module.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ resource "azuread_application" "meshcloud_sso" {
4444
}
4545

4646
resource "azuread_application_password" "meshcloud_sso" {
47-
application_id = azuread_application.meshcloud_sso.client_id
47+
application_id = azuread_application.meshcloud_sso.id
4848
}

0 commit comments

Comments
 (0)