201-web-app-postgres-keyvault patch (#179)

* fix example
This commit is contained in:
Dingjia Chen
2023-03-01 23:41:59 -06:00
committed by GitHub
parent 95a5b0cac4
commit 5e48773198
8 changed files with 126 additions and 111 deletions

View File

@ -0,0 +1,24 @@
output "web_app_url" {
value = azurerm_app_service.main.default_site_hostname
}
output "database_name" {
value = azurerm_mysql_database.web_app_backend.name
}
output "database_server_name" {
value = azurerm_mysql_server.web_app_backend.fqdn
}
output "app_service_plan_name" {
value = azurerm_app_service_plan.web_app_frontend.name
}
output "mysql_server_admin_name" {
value = azurerm_mysql_server.web_app_backend.administrator_login
}
output "mysql_server_admin_password" {
sensitive = true
value = azurerm_mysql_server.web_app_backend.administrator_login_password
}