We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e876e2 commit 4c83557Copy full SHA for 4c83557
filestore_backup_basic/main.tf
@@ -1,5 +1,5 @@
1
resource "google_filestore_instance" "instance" {
2
- name = "tf-fs-inst-${local.name_suffix}"
+ name = "fs-inst-${local.name_suffix}"
3
location = "us-central1-b"
4
tier = "BASIC_HDD"
5
@@ -16,7 +16,7 @@ resource "google_filestore_instance" "instance" {
16
}
17
18
resource "google_filestore_backup" "backup" {
19
- name = "tf-fs-bkup-${local.name_suffix}"
+ name = "fs-bkup-${local.name_suffix}"
20
location = "us-central1"
21
description = "This is a filestore backup for the test instance"
22
source_instance = google_filestore_instance.instance.id
0 commit comments