From 4c0c9b16f4b63ed482d3f71971ff5cde840eb10d Mon Sep 17 00:00:00 2001 From: Ludo Date: Mon, 14 Aug 2023 12:07:38 +0200 Subject: [PATCH 1/2] update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef1e4e60..f05cd212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ All notable changes to this project will be documented in this file. ### MODULES +- [[#1589](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/1589)] Add new `iam_members` variable to IAM additive module interfaces ([ludoo](https://github.com/ludoo)) +- [[#1588](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/1588)] feat: 🎸 (modules/cloudsql-instance): enable require_ssl cert support ([erabusi](https://github.com/erabusi)) - [[#1587](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/1587)] **incompatible change:** Fix factory rules key in net firewall policy module ([ludoo](https://github.com/ludoo)) - [[#1578](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/1578)] Fix: Instance level stateful disk config ([beardedsamwise](https://github.com/beardedsamwise)) - [[#1582](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/1582)] feat(modules/cloud-run): add gen2 exec env support ([LiuVII](https://github.com/LiuVII)) From b6b660f4f3d43a5ca1fdca7fac98ace2be8b06c9 Mon Sep 17 00:00:00 2001 From: erabusi <72961506+erabusi@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:10:25 +0530 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20(modules/cloudsql-in?= =?UTF-8?q?stance):add=20project=5Fid=20for=20ssl=20cert=20(#1591)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/cloudsql-instance/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/cloudsql-instance/main.tf b/modules/cloudsql-instance/main.tf index 5c40b212..05f150dd 100644 --- a/modules/cloudsql-instance/main.tf +++ b/modules/cloudsql-instance/main.tf @@ -194,6 +194,7 @@ resource "google_sql_user" "users" { resource "google_sql_ssl_cert" "postgres_client_certificates" { for_each = var.postgres_client_certificates != null ? toset(var.postgres_client_certificates) : toset([]) provider = google-beta + project = var.project_id instance = google_sql_database_instance.primary.name common_name = each.key }