File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ In particular:
17
17
18
18
``` hcl
19
19
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 "
21
21
22
22
database = "my-database"
23
23
@@ -27,7 +27,7 @@ module "my_database" {
27
27
# Optional user password. Not required when using Vault roles
28
28
plaintext_password = "a very hard to guess password"
29
29
30
- # Default values are utf8mb4 and utf8mb4_unicode_ci
30
+ # The default values
31
31
default_character_set = "utf8"
32
32
default_collation = "utf8_unicode_ci"
33
33
@@ -42,7 +42,7 @@ You can provide extra permissions for `all-privileges` or `read-only` roles with
42
42
43
43
``` hcl
44
44
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 "
46
46
47
47
database = "my-database"
48
48
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ variable "plaintext_password" {
15
15
}
16
16
17
17
variable "default_character_set" {
18
- default = " utf8mb4 "
18
+ default = " utf8 "
19
19
}
20
20
21
21
variable "default_collation" {
22
- default = " utf8mb4_unicode_ci "
22
+ default = " utf8_unicode_ci "
23
23
}
24
24
25
25
variable "vault_backend_path" {
You can’t perform that action at this time.
0 commit comments