| 1 | output "resource_group_name" { |
| 2 | value = module.resource_group.name |
| 3 | } |
| 4 | |
| 5 | output "acr_login_server" { |
| 6 | value = module.acr.login_server |
| 7 | } |
| 8 | |
| 9 | output "aks_cluster_name" { |
| 10 | value = module.aks.name |
| 11 | } |
| 12 | |
| 13 | output "key_vault_name" { |
| 14 | value = module.key_vault.name |
| 15 | } |
| 16 | |
| 17 | output "workload_identity_client_id" { |
| 18 | value = azurerm_user_assigned_identity.platform_workload.client_id |
| 19 | } |
| 20 | |
| 21 | output "aks_oidc_issuer_url" { |
| 22 | value = module.aks.oidc_issuer_url |
| 23 | } |