From d9006bf9ba9865f8296996f3c8ff4d9b888a9cfc Mon Sep 17 00:00:00 2001 From: Modular Magician Date: Fri, 7 Feb 2025 23:35:06 +0000 Subject: [PATCH] Made filestore backup tests use sweepable resources (#13009) [upstream:37390d359c66e0c8c4917fe8a4be1d5dab6440c2] Signed-off-by: Modular Magician --- filestore_backup_basic/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filestore_backup_basic/main.tf b/filestore_backup_basic/main.tf index 8f3d09c4..c4a3773a 100644 --- a/filestore_backup_basic/main.tf +++ b/filestore_backup_basic/main.tf @@ -1,5 +1,5 @@ resource "google_filestore_instance" "instance" { - name = "tf-fs-inst-${local.name_suffix}" + name = "fs-inst-${local.name_suffix}" location = "us-central1-b" tier = "BASIC_HDD" @@ -16,7 +16,7 @@ resource "google_filestore_instance" "instance" { } resource "google_filestore_backup" "backup" { - name = "tf-fs-bkup-${local.name_suffix}" + name = "fs-bkup-${local.name_suffix}" location = "us-central1" description = "This is a filestore backup for the test instance" source_instance = google_filestore_instance.instance.id