We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64e3063 commit 05491d2Copy full SHA for 05491d2
1 file changed
terraform-infrastructure/outputs.tf
@@ -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