Initial put

This commit is contained in:
Tom Archer
2024-10-31 19:11:12 -07:00
committed by lonegunmanb
parent 0b42c09bc4
commit 6623e166ef
5 changed files with 186 additions and 0 deletions

View File

@ -0,0 +1,19 @@
output "resource_group_name" {
value = azurerm_resource_group.rg.name
}
output "storage_account_name" {
value = azurerm_storage_account.storageAccount.name
}
output "app_service_plan_name" {
value = azurerm_app_service_plan.hostingPlan.name
}
output "function_app_name" {
value = azurerm_function_app.functionApp.name
}
output "application_insights_name" {
value = azurerm_application_insights.applicationInsights.name
}