Skip to content

Commit 83ea2c4

Browse files
chore(master): release 20.2.0 (#608)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 163a89c commit 83ea2c4

File tree

16 files changed

+30
-18
lines changed

16 files changed

+30
-18
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
66
project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [20.2.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v20.1.0...v20.2.0) (2024-06-06)
9+
10+
11+
### Features
12+
13+
* Add Point in time recovery flag for mysql DB ([#607](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/607)) ([b9a6ada](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/b9a6ada308e4e539efba4191a6a8100926e0a4f2))
14+
15+
16+
### Bug Fixes
17+
18+
* mssql - make instance_server_ca_cert output sensitive ([#609](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/609)) ([163a89c](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/163a89cb47fdef473b6068d782a8a2253136e9b5))
19+
820
## [20.1.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v20.0.0...v20.1.0) (2024-05-06)
921

1022

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ For MySQL :
7979
```
8080
module "sql-db" {
8181
source = "GoogleCloudPlatform/sql-db/google//modules/mysql"
82-
version = "~> 20.1"
82+
version = "~> 20.2"
8383
}
8484
```
8585

examples/mssql-failover-replica/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Promote instance 2 as primary and change instance 1 as failover replica
2323
```diff
2424
module "mssql2" {
2525
source = "terraform-google-modules/sql-db/google//modules/mssql"
26-
version = "~> 20.1"
26+
version = "~> 20.2"
2727

2828
- master_instance_name = module.mssql1.instance_name
2929

examples/postgresql-with-cross-region-failover/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Promote instance 2 as primary and change instance 1 as failover replica
2626
```diff
2727
module "pg2" {
2828
source = "terraform-google-modules/sql-db/google//modules/postgresql"
29-
version = "~> 20.1"
29+
version = "~> 20.2"
3030

3131
- master_instance_name = module.pg1.instance_name
3232

modules/mssql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Basic usage of this module is as follows:
1212
```hcl
1313
module "mssql" {
1414
source = "terraform-google-modules/sql-db/google//modules/mssql"
15-
version = "~> 20.1"
15+
version = "~> 20.2"
1616
1717
name = var.name
1818
random_instance_name = true

modules/mssql/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
source:
2424
repo: https://github.com/terraform-google-modules/terraform-google-sql-db
2525
sourceType: git
26-
version: 20.1.0
26+
version: 20.2.0
2727
actuationTool:
2828
type: Terraform
2929
version: '>= 0.13'

modules/mssql/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ terraform {
3636
}
3737

3838
provider_meta "google-beta" {
39-
module_name = "blueprints/terraform/terraform-google-sql-db:mssql/v20.1.0"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mssql/v20.2.0"
4040
}
4141

4242
}

modules/mysql/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
source:
2424
repo: https://github.com/terraform-google-modules/terraform-google-sql-db
2525
sourceType: git
26-
version: 20.1.0
26+
version: 20.2.0
2727
actuationTool:
2828
type: Terraform
2929
version: '>= 1.3'

modules/mysql/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ terraform {
3636
}
3737

3838
provider_meta "google" {
39-
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v20.1.0"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v20.2.0"
4040
}
4141
provider_meta "google-beta" {
42-
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v20.1.0"
42+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v20.2.0"
4343
}
4444

4545
}

modules/postgresql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Basic usage of this module is as follows:
1313
```hcl
1414
module "pg" {
1515
source = "terraform-google-modules/sql-db/google//modules/postgresql"
16-
version = "~> 20.1"
16+
version = "~> 20.2"
1717
1818
name = var.pg_ha_name
1919
random_instance_name = true

0 commit comments

Comments
 (0)