From ed88439712815925472a43505f639953e5ad9e2e Mon Sep 17 00:00:00 2001 From: Modular Magician Date: Wed, 4 Jun 2025 21:49:34 +0000 Subject: [PATCH] colab: fixed perma-diff in google_colab_runtime_template caused by empty blocks. (#14197) [upstream:c7252cc45375298caefb16f412f0c9b38397c9dd] Signed-off-by: Modular Magician --- colab_runtime_template_full/main.tf | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/colab_runtime_template_full/main.tf b/colab_runtime_template_full/main.tf index 0d79d718..f3309004 100644 --- a/colab_runtime_template_full/main.tf +++ b/colab_runtime_template_full/main.tf @@ -41,11 +41,11 @@ resource "google_colab_runtime_template" "runtime-template" { } euc_config { - euc_disabled = true + euc_disabled = false } shielded_vm_config { - enable_secure_boot = true + enable_secure_boot = false } network_tags = ["abc", "def"] @@ -53,17 +53,4 @@ resource "google_colab_runtime_template" "runtime-template" { encryption_spec { kms_key_name = "my-crypto-key-${local.name_suffix}" } - - software_config { - env { - name = "TEST" - value = 1 - } - - post_startup_script_config { - post_startup_script = "echo 'hello world'" - post_startup_script_url = "gs://colab-enterprise-pss-secure/secure_pss.sh" - post_startup_script_behavior = "RUN_ONCE" - } - } }