Quickstart for WebApp with MySQL backend

This commit is contained in:
Mark Gray
2018-10-27 15:32:15 -07:00
parent a964345544
commit 1a74307d5d
7 changed files with 154 additions and 0 deletions

View File

@ -0,0 +1,15 @@
output "webAppUrl" {
value = "${azurerm_app_service.webAppFrontend.default_site_hostname}"
}
output "databaseName" {
value = "${azurerm_mysql_database.webAppBackend.name}"
}
output "databaseServerName" {
value = "${azurerm_mysql_server.webAppBackend.fqdn}"
}
output "appServicePlanName" {
value = "${azurerm_app_service_plan.webAppFrontend.name}"
}