Skip to content

Commit 19c3b84

Browse files
authored
feat: Add optional kms_key_handle_name (#743)
1 parent 101c834 commit 19c3b84

File tree

20 files changed

+75
-24
lines changed

20 files changed

+75
-24
lines changed

examples/mssql-failover-replica/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ locals {
2424

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

2929
region = local.region_1
3030

examples/mssql-public/main.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

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

2121
name = var.name
2222
random_instance_name = true
@@ -27,4 +27,9 @@ module "mssql" {
2727
deletion_protection = false
2828

2929
sql_server_audit_config = var.sql_server_audit_config
30+
31+
insights_config = {
32+
query_plans_per_minute = 5
33+
}
34+
3035
}

examples/mysql-backup-create-service-account/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "mysql" {
1818
source = "terraform-google-modules/sql-db/google//modules/mysql"
19-
version = "~> 25.0"
19+
version = "~> 26.0"
2020

2121
name = "example-mysql-public"
2222
database_version = "MYSQL_8_0"
@@ -45,7 +45,7 @@ resource "google_storage_bucket" "backup" {
4545

4646
module "backup" {
4747
source = "terraform-google-modules/sql-db/google//modules/backup"
48-
version = "~> 25.0"
48+
version = "~> 26.0"
4949

5050
region = "us-central1"
5151
project_id = var.project_id

examples/mysql-ha/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ locals {
3333

3434
module "mysql" {
3535
source = "terraform-google-modules/sql-db/google//modules/mysql"
36-
version = "~> 25.0"
36+
version = "~> 26.0"
3737

3838
name = var.mysql_ha_name
3939
random_instance_name = true

examples/mysql-private/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module "network-safer-mysql-simple" {
3939

4040
module "private-service-access" {
4141
source = "terraform-google-modules/sql-db/google//modules/private_service_access"
42-
version = "~> 25.0"
42+
version = "~> 26.0"
4343

4444
project_id = var.project_id
4545
vpc_network = module.network-safer-mysql-simple.network_name
@@ -48,7 +48,7 @@ module "private-service-access" {
4848

4949
module "safer-mysql-db" {
5050
source = "terraform-google-modules/sql-db/google//modules/safer_mysql"
51-
version = "~> 25.0"
51+
version = "~> 26.0"
5252

5353

5454
name = var.db_name

examples/mysql-psc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ locals {
2727

2828
module "mysql" {
2929
source = "terraform-google-modules/sql-db/google//modules/mysql"
30-
version = "~> 25.0"
30+
version = "~> 26.0"
3131

3232
name = var.mysql_ha_name
3333
random_instance_name = true

examples/mysql-public/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resource "random_id" "name" {
2020

2121
module "mysql-db" {
2222
source = "terraform-google-modules/sql-db/google//modules/mysql"
23-
version = "~> 25.0"
23+
version = "~> 26.0"
2424

2525
name = var.db_name
2626
random_instance_name = true

examples/postgresql-backup-provided-service-account/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "postgresql" {
1818
source = "terraform-google-modules/sql-db/google//modules/postgresql"
19-
version = "~> 25.0"
19+
version = "~> 26.0"
2020

2121
name = "example-postgres"
2222
random_instance_name = true
@@ -56,7 +56,7 @@ resource "google_monitoring_notification_channel" "email" {
5656

5757
module "backup" {
5858
source = "terraform-google-modules/sql-db/google//modules/backup"
59-
version = "~> 25.0"
59+
version = "~> 26.0"
6060

6161
region = "us-central1"
6262
project_id = var.project_id

examples/postgresql-ha/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ locals {
3232

3333
module "pg" {
3434
source = "terraform-google-modules/sql-db/google//modules/postgresql"
35-
version = "~> 25.0"
35+
version = "~> 26.0"
3636

3737
name = var.pg_ha_name
38-
random_instance_name = true
38+
random_instance_name = false
3939
project_id = var.project_id
4040
database_version = "POSTGRES_9_6"
4141
region = "us-central1"

examples/postgresql-psc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ locals {
2626

2727
module "pg" {
2828
source = "terraform-google-modules/sql-db/google//modules/postgresql"
29-
version = "~> 25.0"
29+
version = "~> 26.0"
3030

3131
name = var.pg_psc_name
3232
random_instance_name = true

0 commit comments

Comments
 (0)