modules/usermanagedidentity/outputs.tf (16 lines of code) (raw):
output "client_id" {
description = "The client id of the user managed identity"
value = local.umi_output.properties.clientId
}
output "principal_id" {
description = "The object id of the user managed identity"
value = local.umi_output.properties.principalId
}
output "resource_id" {
description = "The resource id of the user managed identity"
value = azapi_resource.umi.id
}
output "tenant_id" {
description = "The tenant id of the user managed identity"
value = local.umi_output.properties.tenantId
}