Skip to content

Commit 744870a

Browse files
authored
feat(TPG>=6.1)!: add support for IAM groups (#661)
1 parent 171c492 commit 744870a

File tree

64 files changed

+267
-130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+267
-130
lines changed

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,5 +257,5 @@ tags:
257257
- 'integration'
258258
substitutions:
259259
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
260-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.20'
260+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.22'
261261
_API_ACTIVATION_SECONDS_WAIT: '300'

build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ tags:
2121
- 'lint'
2222
substitutions:
2323
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
24-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.20'
24+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.22'

docs/upgrading_to_sql_db_23.0.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The 23.0 release of SQL DB is a backward incompatible release.
44

5-
# Cloud SQL Service Account role update
5+
# Cloud SQL Service Account role update in backup module
66

77
Changed `storage.objectCreator` role to `storage.objectAdmin` for Cloud SQL Service Account on the bucket used for exporting the database, due to GCP internal changes in the export process.
8+
9+
# Minimum provider version
10+
Minimum provider version for `mysql`, `safer_mysql` and `postgresql sub-module` is `6.1`
11+

examples/mssql-failover-replica/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@ locals {
2424

2525
module "mssql1" {
2626
source = "terraform-google-modules/sql-db/google//modules/mssql"
27-
version = "~> 22.0"
27+
version = "~> 23.0"
2828

2929
region = local.region_1
3030

@@ -56,7 +56,7 @@ module "mssql1" {
5656

5757
module "mssql2" {
5858
source = "terraform-google-modules/sql-db/google//modules/mssql"
59-
version = "~> 22.0"
59+
version = "~> 23.0"
6060

6161
master_instance_name = module.mssql1.instance_name
6262

examples/mssql-failover-replica/network.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

examples/mssql-failover-replica/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

examples/mssql-failover-replica/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

examples/mssql-public/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,7 +16,7 @@
1616

1717
module "mssql" {
1818
source = "terraform-google-modules/sql-db/google//modules/mssql"
19-
version = "~> 22.0"
19+
version = "~> 23.0"
2020

2121
name = var.name
2222
random_instance_name = true

examples/mssql-public/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

examples/mssql-public/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)