Add example for MySQL Flexible Server Database

This commit is contained in:
neil-yechenwei
2022-03-02 14:26:28 +08:00
parent 112c5b5192
commit c70498ea85
7 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,11 @@
output "resource_group_name" {
value = azurerm_resource_group.default.name
}
output "azurerm_mysql_flexible_server" {
value = azurerm_mysql_flexible_server.default.name
}
output "mysql_flexible_server_database_name" {
value = azurerm_mysql_flexible_database.default.name
}