Skip to content

Commit 68c01dd

Browse files
chore(main): release 27.2.0 (#800)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 67733a2 commit 68c01dd

File tree

19 files changed

+29
-21
lines changed

19 files changed

+29
-21
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
## [27.2.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v27.1.0...v27.2.0) (2026-01-08)
9+
10+
11+
### Features
12+
13+
* **compute_instance:** Update metadata file ([#802](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/802)) ([67733a2](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/67733a258cf0c904939f58f559980ae49b419e6b))
14+
* **compute_instance:** Update outputExpr to use service account name ([#799](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/799)) ([cf937a3](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/cf937a370feae50d6b63a31259c80b8c2a080eee))
15+
816
## [27.1.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v27.0.0...v27.1.0) (2026-01-07)
917

1018

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ For MySQL :
8787
```
8888
module "sql-db" {
8989
source = "GoogleCloudPlatform/sql-db/google//modules/mysql"
90-
version = "~> 27.1"
90+
version = "~> 27.2"
9191
}
9292
```
9393

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 = "~> 27.1"
26+
version = "~> 27.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 = "~> 27.1"
29+
version = "~> 27.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 = "~> 27.1"
15+
version = "~> 27.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
@@ -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: 27.1.0
28+
version: 27.2.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/v27.1.0"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mssql/v27.2.0"
4040
}
4141

4242
}

modules/mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Functional examples are included in the [examples](../../examples/) directory. B
1010
```hcl
1111
module "mysql-db" {
1212
source = "terraform-google-modules/sql-db/google//modules/mysql"
13-
version = "~> 27.1"
13+
version = "~> 27.2"
1414
1515
name = var.db_name
1616
random_instance_name = true

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: 27.1.0
28+
version: 27.2.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/v27.1.0"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v27.2.0"
4040
}
4141
provider_meta "google-beta" {
42-
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v27.1.0"
42+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v27.2.0"
4343
}
4444

4545
}

0 commit comments

Comments
 (0)