Skip to content

Commit

Permalink
Update postgresql_flexible_server_database info text about naming con…
Browse files Browse the repository at this point in the history
…ventions (hashicorp#24909)
  • Loading branch information
jhirvioja authored Feb 16, 2024
1 parent aa515f2 commit e2f5d3d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "azurerm_postgresql_flexible_server" "example" {
}
resource "azurerm_postgresql_flexible_server_database" "example" {
name = "example-db"
name = "exampledb"
server_id = azurerm_postgresql_flexible_server.example.id
collation = "en_US.utf8"
charset = "utf8"
Expand All @@ -48,7 +48,7 @@ resource "azurerm_postgresql_flexible_server_database" "example" {

The following arguments are supported:

* `name` - (Required) The name which should be used for this Azure PostgreSQL Flexible Server Database. Changing this forces a new Azure PostgreSQL Flexible Server Database to be created.
* `name` - (Required) Specifies the name of the PostgreSQL Database, which needs [to be a valid PostgreSQL identifier](https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS). Changing this forces a new Azure PostgreSQL Flexible Server Database to be created.

* `server_id` - (Required) The ID of the Azure PostgreSQL Flexible Server from which to create this PostgreSQL Flexible Server Database. Changing this forces a new Azure PostgreSQL Flexible Server Database to be created.

Expand Down

0 comments on commit e2f5d3d

Please sign in to comment.