Skip to content

Commit 7c3e805

Browse files
committed
prepare v0.3.0
Signed-off-by: Yoan Blanc <yblanc@edgelab.ch>
1 parent 0ae0f57 commit 7c3e805

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In particular:
1717

1818
```hcl
1919
module "my_database" {
20-
source = "git@github.com:edgelaboratories/terraform-mysql-db?ref=v0.2.3"
20+
source = "git@github.com:edgelaboratories/terraform-mysql-db?ref=v0.3.0"
2121
2222
database = "my-database"
2323
@@ -27,7 +27,7 @@ module "my_database" {
2727
# Optional user password. Not required when using Vault roles
2828
plaintext_password = "a very hard to guess password"
2929
30-
# Default values are utf8mb4 and utf8mb4_unicode_ci
30+
# The default values
3131
default_character_set = "utf8"
3232
default_collation = "utf8_unicode_ci"
3333
@@ -42,7 +42,7 @@ You can provide extra permissions for `all-privileges` or `read-only` roles with
4242

4343
```hcl
4444
module "my_database" {
45-
source = "git@github.com:edgelaboratories/terraform-mysql-db?ref=v0.2.3"
45+
source = "git@github.com:edgelaboratories/terraform-mysql-db?ref=v0.3.0"
4646
4747
database = "my-database"
4848

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ variable "plaintext_password" {
1515
}
1616

1717
variable "default_character_set" {
18-
default = "utf8mb4"
18+
default = "utf8"
1919
}
2020

2121
variable "default_collation" {
22-
default = "utf8mb4_unicode_ci"
22+
default = "utf8_unicode_ci"
2323
}
2424

2525
variable "vault_backend_path" {

0 commit comments

Comments
 (0)