Skip to content

prepare v0.3.0 #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 10, 2025
Merged
Changes from all 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
8 changes: 4 additions & 4 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 = "git@github.com:edgelaboratories/terraform-mysql-db?ref=v0.2.3"
source = "git@github.com:edgelaboratories/terraform-mysql-db?ref=v0.3.0"

database = "my-database"

Expand All @@ -28,8 +28,8 @@ module "my_database" {
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"
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 = "git@github.com:edgelaboratories/terraform-mysql-db?ref=v0.2.3"
source = "git@github.com:edgelaboratories/terraform-mysql-db?ref=v0.3.0"

database = "my-database"

Expand Down