Skip to content

Commit 4a536d4

Browse files
chore(master): release 23.0.0 (#660)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 744870a commit 4a536d4

File tree

16 files changed

+36
-18
lines changed

16 files changed

+36
-18
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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+
## [23.0.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v22.1.0...v23.0.0) (2024-10-28)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* **TPG>=6.1:** add support for IAM groups ([#661](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/661))
14+
* Change export service account permission for external backups - roles/storage.objectAdmin ([#656](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/656))
15+
16+
### Features
17+
18+
* **TPG>=6.1:** add support for IAM groups ([#661](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/661)) ([744870a](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/744870a18f692bf78bc8b0afacde6b659cf65732))
19+
20+
21+
### Bug Fixes
22+
23+
* Change export service account permission for external backups - roles/storage.objectAdmin ([#656](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/656)) ([003237e](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/003237e1d007dca76f77723f21106b077f7b8801))
24+
* lint issue in metadata.display.yaml ([#659](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/659)) ([c414276](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/c414276020f5a7fd1e779d484e5c84855aea6ed4))
25+
826
## [22.1.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v22.0.0...v22.1.0) (2024-10-01)
927

1028

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ For MySQL :
8080
```
8181
module "sql-db" {
8282
source = "GoogleCloudPlatform/sql-db/google//modules/mysql"
83-
version = "~> 22.1"
83+
version = "~> 23.0"
8484
}
8585
```
8686

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 = "~> 22.1"
26+
version = "~> 23.0"
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 = "~> 22.1"
29+
version = "~> 23.0"
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 = "~> 22.1"
15+
version = "~> 23.0"
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
@@ -25,7 +25,7 @@ spec:
2525
repo: https://github.com/terraform-google-modules/terraform-google-sql-db.git
2626
sourceType: git
2727
dir: /modules/mssql
28-
version: 22.1.0
28+
version: 23.0.0
2929
actuationTool:
3030
flavor: Terraform
3131
version: ">= 1.3"

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/v22.1.0"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mssql/v23.0.0"
4040
}
4141

4242
}

modules/mysql/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
repo: https://github.com/terraform-google-modules/terraform-google-sql-db.git
2626
sourceType: git
2727
dir: /modules/mysql
28-
version: 22.1.0
28+
version: 23.0.0
2929
actuationTool:
3030
flavor: Terraform
3131
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/v22.1.0"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v23.0.0"
4040
}
4141
provider_meta "google-beta" {
42-
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v22.1.0"
42+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v23.0.0"
4343
}
4444

4545
}

modules/postgresql/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
repo: https://github.com/terraform-google-modules/terraform-google-sql-db.git
2626
sourceType: git
2727
dir: /modules/postgresql
28-
version: 22.1.0
28+
version: 23.0.0
2929
actuationTool:
3030
flavor: Terraform
3131
version: ">= 1.3"

0 commit comments

Comments
 (0)