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] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20(modules/cloudsql-instan?= =?UTF-8?q?ce):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 }