201-mysql-fs-db patch (#182)

* fix example

* fix example

* fix example
This commit is contained in:
Dingjia Chen
2023-03-01 20:54:49 -06:00
committed by GitHub
parent b32087dbf6
commit 8dca60b848
4 changed files with 19 additions and 8 deletions

View File

@ -2,8 +2,17 @@ output "azurerm_mysql_flexible_server" {
value = azurerm_mysql_flexible_server.default.name
}
output "admin_login" {
value = azurerm_mysql_flexible_server.default.administrator_login
}
output "admin_password" {
sensitive = true
value = azurerm_mysql_flexible_server.default.administrator_password
}
output "mysql_flexible_server_database_name" {
value = azurerm_mysql_flexible_database.default.name
value = azurerm_mysql_flexible_database.main.name
}
output "resource_group_name" {