Quickstart for WebApp with MySQL backend
This commit is contained in:
15
quickstart/WebAppMySql/output.tf
Normal file
15
quickstart/WebAppMySql/output.tf
Normal 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}"
|
||||
}
|
Reference in New Issue
Block a user