Skip to content

Commit

Permalink
Update resource names in acceptance test to use tf-test- prefix (#7450
Browse files Browse the repository at this point in the history
) (#14002)

Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician authored Mar 15, 2023
1 parent ee098d1 commit ad26fb1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .changelog/7450.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
10 changes: 5 additions & 5 deletions google/data_source_google_compute_instance_group_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ func TestAccDataSourceGoogleComputeInstanceGroupManager(t *testing.T) {
t.Parallel()

zoneName := "us-central1-a"
igmName := "tf-tst-igm" + RandString(t, 6)
igmName := "tf-test-igm" + RandString(t, 6)

context := map[string]interface{}{
"zoneName": zoneName,
"igmName": igmName,
"baseName": "tf-tst-igm-base" + RandString(t, 6),
"poolName": "tf-tst-pool" + RandString(t, 6),
"templateName": "tf-tst-templt" + RandString(t, 6),
"autoHealName": "tf-tst-ah-name" + RandString(t, 6),
"baseName": "tf-test-igm-base" + RandString(t, 6),
"poolName": "tf-test-pool" + RandString(t, 6),
"templateName": "tf-test-templt" + RandString(t, 6),
"autoHealName": "tf-test-ah-name" + RandString(t, 6),
}

VcrTest(t, resource.TestCase{
Expand Down

0 comments on commit ad26fb1

Please sign in to comment.