diff --git a/CHANGELOG.md b/CHANGELOG.md index a6d2141..f74fea9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.0] - 2023-01-23 + +### Changed + +- Bump to 0.3, since 0.2.2 was a breaking change. +- User password special characters are now `_~@` from `_%@` to allow masking in Gitlab. + ## [0.2.2] - 2023-01-23 ### Changed diff --git a/examples/main.tf b/examples/main.tf index 0987f5b..948acf7 100644 --- a/examples/main.tf +++ b/examples/main.tf @@ -57,7 +57,7 @@ resource "google_sql_database_instance" "instance" { resource "random_password" "admin_sql_user_password_mysql" { length = 24 special = true - override_special = "_%@" + override_special = "_~@" } resource "google_sql_user" "admin_user_mysql" { diff --git a/main.tf b/main.tf index f797bef..8b63b99 100644 --- a/main.tf +++ b/main.tf @@ -38,7 +38,7 @@ resource "random_password" "sql_user_password" { for_each = { for u in var.database_and_user_list : u.user => u } length = 16 special = true - override_special = "_%@" + override_special = "_~@" } # Create the databases.