Skip to content

Commit 0ea2b56

Browse files
colab: fixed perma-diff in google_colab_runtime_template caused by empty blocks. (#14197) (#1010)
[upstream:c7252cc45375298caefb16f412f0c9b38397c9dd] Signed-off-by: Modular Magician <[email protected]>
1 parent 9ad503f commit 0ea2b56

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

colab_runtime_template_full/main.tf

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -41,29 +41,16 @@ resource "google_colab_runtime_template" "runtime-template" {
4141
}
4242

4343
euc_config {
44-
euc_disabled = true
44+
euc_disabled = false
4545
}
4646

4747
shielded_vm_config {
48-
enable_secure_boot = true
48+
enable_secure_boot = false
4949
}
5050

5151
network_tags = ["abc", "def"]
5252

5353
encryption_spec {
5454
kms_key_name = "my-crypto-key-${local.name_suffix}"
5555
}
56-
57-
software_config {
58-
env {
59-
name = "TEST"
60-
value = 1
61-
}
62-
63-
post_startup_script_config {
64-
post_startup_script = "echo 'hello world'"
65-
post_startup_script_url = "gs://colab-enterprise-pss-secure/secure_pss.sh"
66-
post_startup_script_behavior = "RUN_ONCE"
67-
}
68-
}
6956
}

0 commit comments

Comments
 (0)