Add example for PostgreSQL Flexible Server Database

This commit is contained in:
neil-yechenwei
2022-02-07 13:23:28 +08:00
parent 48a25a1440
commit ad42d646d8
5 changed files with 308 additions and 0 deletions

View File

@ -0,0 +1,6 @@
resource "azurerm_postgresql_flexible_server_database" "default" {
name = "${var.name}-${var.environment}-db"
server_id = azurerm_postgresql_flexible_server.default.id
collation = "en_US.UTF8"
charset = "UTF8"
}