Skip to content

Commit 77ae8a3

Browse files
authored
+outputs.tf
1 parent 792a7d7 commit 77ae8a3

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Output the name of the resource group
2+
output "resource_group_name" {
3+
value = azurerm_resource_group.example.name # The name of the resource group
4+
}
5+
6+
# Output the name of the storage account
7+
output "storage_account_name" {
8+
value = azurerm_storage_account.example.name # The name of the storage account
9+
}
10+
11+
# Output the name of the storage container
12+
output "storage_container_name" {
13+
value = azurerm_storage_container.example.name # The name of the storage container
14+
}
15+
16+
# Output the name of the MSSQL Server
17+
output "sql_server_name" {
18+
value = azurerm_mssql_server.example.name # The name of the SQL Server
19+
}
20+
21+
# Output the name of the MSSQL Database
22+
output "sql_database_name" {
23+
value = azurerm_mssql_database.example.name # The name of the SQL Database
24+
}
25+
26+
# Output the name of the Microsoft Fabric Capacity
27+
output "fabric_capacity_name" {
28+
value = azurerm_fabric_capacity.example.name
29+
}
30+
31+
output "fabric_workspace_name" {
32+
value = fabric_workspace.example.display_name
33+
}

0 commit comments

Comments
 (0)