Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ In particular:

```hcl
module "my_database" {
source = "[email protected]:edgelaboratories/terraform-mysql-db?ref=v0.2.3"
source = "[email protected]:edgelaboratories/terraform-mysql-db?ref=v0.3.0"

database = "my-database"

Expand All @@ -27,9 +27,9 @@ module "my_database" {
# Optional user password. Not required when using Vault roles
plaintext_password = "a very hard to guess password"

# Default values are utf8mb4 and utf8mb4_unicode_ci
default_character_set = "utf8"
default_collation = "utf8_unicode_ci"
# The default values
default_character_set = "utf8mb3"
default_collation = "utf8mb3_unicode_ci"

# Optional
vault_backend_path = "mysql/my-cluster"
Expand All @@ -42,7 +42,7 @@ You can provide extra permissions for `all-privileges` or `read-only` roles with

```hcl
module "my_database" {
source = "[email protected]:edgelaboratories/terraform-mysql-db?ref=v0.2.3"
source = "[email protected]:edgelaboratories/terraform-mysql-db?ref=v0.3.0"

database = "my-database"

Expand Down