Skip to content
Merged
Changes from 2 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
6 changes: 3 additions & 3 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,7 +27,7 @@ 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
# The default values
default_character_set = "utf8"
default_collation = "utf8_unicode_ci"

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