@@ -180,7 +180,7 @@ func TestAccColabSchedule_update_state(t *testing.T) {
180
180
func testAccColabSchedule_full (context map [string ]interface {}) string {
181
181
return acctest .Nprintf (`
182
182
resource "google_colab_runtime_template" "my_runtime_template" {
183
- name = ""
183
+ name = "tf-test-runtime-template%{random_suffix} "
184
184
display_name = "Runtime template"
185
185
location = "us-central1"
186
186
@@ -242,7 +242,7 @@ resource "google_storage_bucket_object" "notebook" {
242
242
}
243
243
244
244
resource "google_colab_schedule" "schedule" {
245
- display_name = "Notebook Schedule full "
245
+ display_name = "tf-test-schedule%{random_suffix} "
246
246
location = "%{location}"
247
247
allow_queueing = true
248
248
max_concurrent_run_count = 2
@@ -276,7 +276,7 @@ resource "google_colab_schedule" "schedule" {
276
276
func testAccColabSchedule_paused (context map [string ]interface {}) string {
277
277
return acctest .Nprintf (`
278
278
resource "google_colab_runtime_template" "my_runtime_template" {
279
- name = ""
279
+ name = "tf-test-runtime-template%{random_suffix} "
280
280
display_name = "Runtime template"
281
281
location = "us-central1"
282
282
@@ -338,7 +338,7 @@ resource "google_storage_bucket_object" "notebook" {
338
338
}
339
339
340
340
resource "google_colab_schedule" "schedule" {
341
- display_name = "Notebook Schedule full "
341
+ display_name = "tf-test-schedule%{random_suffix} "
342
342
location = "%{location}"
343
343
allow_queueing = true
344
344
max_concurrent_run_count = 2
@@ -374,7 +374,7 @@ resource "google_colab_schedule" "schedule" {
374
374
func testAccColabSchedule_active (context map [string ]interface {}) string {
375
375
return acctest .Nprintf (`
376
376
resource "google_colab_runtime_template" "my_runtime_template" {
377
- name = ""
377
+ name = "tf-test-runtime-template%{random_suffix} "
378
378
display_name = "Runtime template"
379
379
location = "us-central1"
380
380
@@ -436,7 +436,7 @@ resource "google_storage_bucket_object" "notebook" {
436
436
}
437
437
438
438
resource "google_colab_schedule" "schedule" {
439
- display_name = "Notebook Schedule full "
439
+ display_name = "tf-test-schedule%{random_suffix} "
440
440
location = "%{location}"
441
441
allow_queueing = true
442
442
max_concurrent_run_count = 2
@@ -472,7 +472,7 @@ resource "google_colab_schedule" "schedule" {
472
472
func testAccColabSchedule_update (context map [string ]interface {}) string {
473
473
return acctest .Nprintf (`
474
474
resource "google_colab_runtime_template" "my_runtime_template" {
475
- name = ""
475
+ name = "tf-test-runtime-template%{random_suffix} "
476
476
display_name = "Runtime template"
477
477
location = "us-central1"
478
478
@@ -534,7 +534,7 @@ resource "google_storage_bucket_object" "notebook" {
534
534
}
535
535
536
536
resource "google_colab_schedule" "schedule" {
537
- display_name = "Notebook Schedule updated"
537
+ display_name = "tf-test-schedule- updated%{random_suffix} "
538
538
location = "%{location}"
539
539
allow_queueing = false
540
540
max_concurrent_run_count = 1
0 commit comments