mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
13 lines
429 B
HCL
13 lines
429 B
HCL
output "subscription_id" {
|
|
value = data.azurerm_subscription.current.subscription_id
|
|
}
|
|
|
|
output "tenant_id" {
|
|
value = data.azurerm_subscription.current.tenant_id
|
|
}
|
|
|
|
output "uami_id" {
|
|
description = "Outputs the id in the format: /$ID/resourceGroups/$RG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/$NAME. Not to be confused with the client_id"
|
|
value = azurerm_user_assigned_identity.identity_uami.id
|
|
}
|