From b902b1dab98fbe1d3cedc0b341838e827de5897b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wiktor=20Niesiob=C4=99dzki?= Date: Mon, 12 Feb 2024 19:16:21 +0000 Subject: [PATCH] Fix non-empty plan after apply --- blueprints/data-solutions/vertex-mlops/vertex.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/blueprints/data-solutions/vertex-mlops/vertex.tf b/blueprints/data-solutions/vertex-mlops/vertex.tf index 75152751..c23de780 100644 --- a/blueprints/data-solutions/vertex-mlops/vertex.tf +++ b/blueprints/data-solutions/vertex-mlops/vertex.tf @@ -105,6 +105,11 @@ resource "google_notebooks_instance" "playground" { instance_owners = try(tolist(var.notebooks[each.key].owner), null) service_account = module.service-account-notebook.email + service_account_scopes = [ + "https://www.googleapis.com/auth/cloud-platform", + "https://www.googleapis.com/auth/userinfo.email", + ] + metadata = { notebook-disable-nbconvert = "false"