Skip to content

Commit

Permalink
Update disk test that adds d1- to prefix (#4573) (#8634)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician authored Mar 9, 2021
1 parent 5217b07 commit 094540e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .changelog/4573.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
```release-note:none
```
4 changes: 2 additions & 2 deletions google/resource_compute_disk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ data "google_compute_image" "my_image" {
}
resource "google_compute_disk" "foobar" {
name = "d1-%s"
name = "%s-d1"
image = data.google_compute_image.my_image.self_link
size = 50
type = "pd-ssd"
Expand All @@ -568,7 +568,7 @@ resource "google_compute_snapshot" "snapdisk" {
}
resource "google_compute_disk" "seconddisk" {
name = "d2-%s"
name = "%s-d2"
snapshot = google_compute_snapshot.snapdisk.%s
type = "pd-ssd"
zone = "us-central1-a"
Expand Down

0 comments on commit 094540e

Please sign in to comment.