File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
infrastructure/msFabric/src Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments