mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-11 00:44:20 -05:00
dfe7f855cd
* AB#2578 Azure IAM init * AB#2578 Fixed application owner privileges, added docs * Add all supported providers to TF lockfile * Using service principal for role assignment in cluster resource group Co-authored-by: Malte Poll <mp@edgeless.systems> * Rephrased header for Azure Co-authored-by: Malte Poll <mp@edgeless.systems> * Registry -> Registration typo Co-authored-by: Malte Poll <mp@edgeless.systems> * Download lockfile * File name casing Co-authored-by: Malte Poll <mp@edgeless.systems>
29 lines
591 B
HCL
29 lines
591 B
HCL
output "subscription_id" {
|
|
value = data.azurerm_subscription.current.subscription_id
|
|
}
|
|
|
|
output "tenant_id" {
|
|
value = data.azurerm_subscription.current.tenant_id
|
|
}
|
|
|
|
output "region" {
|
|
value = var.region
|
|
}
|
|
|
|
output "base_resource_group_name" {
|
|
value = var.resource_group_name
|
|
}
|
|
|
|
output "application_id" {
|
|
value = azuread_application.base_application.application_id
|
|
}
|
|
|
|
output "uami_id" {
|
|
value = azurerm_user_assigned_identity.identity_uami.id
|
|
}
|
|
|
|
output "application_client_secret_value" {
|
|
value = azuread_application_password.base_application_secret.value
|
|
sensitive = true
|
|
}
|