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

@ -1,8 +1,8 @@
# Manages the MySQL Flexible Server Database
resource "azurerm_mysql_flexible_database" "default" {
charset = "utf8"
collation = "utf8_unicode_ci"
resource "azurerm_mysql_flexible_database" "main" {
charset = "utf8mb4"
collation = "utf8mb4_unicode_ci"
name = "mysqlfsdb_${random_string.name.result}"
resource_group_name = azurerm_resource_group.rg.name
server_name = azurerm_mysql_flexible_server.default.name
}
}