Skip to content

Commit 05491d2

Browse files
authored
outputs
1 parent 64e3063 commit 05491d2

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
output "client_config" {
2+
value = {
3+
client_id = data.azurerm_client_config.current.client_id
4+
tenant_id = data.azurerm_client_config.current.tenant_id
5+
subscription_id = data.azurerm_client_config.current.subscription_id
6+
}
7+
}
8+
9+
output "resource_group_name" {
10+
value = azurerm_resource_group.example.name
11+
}
12+
13+
output "application_insights_id" {
14+
value = azurerm_application_insights.example.id
15+
}
16+
17+
output "key_vault_id" {
18+
value = azurerm_key_vault.example.id
19+
}
20+
21+
output "storage_account_id" {
22+
value = azurerm_storage_account.example.id
23+
}
24+
25+
output "ml_workspace_id" {
26+
value = azurerm_machine_learning_workspace.example.id
27+
}
28+
29+
output "ml_workspace_name" {
30+
value = azurerm_machine_learning_workspace.example.name
31+
}

0 commit comments

Comments
 (0)