@@ -28,7 +28,7 @@ func TestAccDataplexEntryGroup_update(t *testing.T) {
2828 Config : testAccDataplexEntryGroup_full (context ),
2929 },
3030 {
31- ResourceName : "google_dataplex_entry_group.test_entry_group_full " ,
31+ ResourceName : "google_dataplex_entry_group.test_entry_group " ,
3232 ImportState : true ,
3333 ImportStateVerify : true ,
3434 ImportStateVerifyIgnore : []string {"location" , "entry_group_id" , "labels" , "terraform_labels" },
@@ -37,7 +37,7 @@ func TestAccDataplexEntryGroup_update(t *testing.T) {
3737 Config : testAccDataplexEntryGroup_update (context ),
3838 },
3939 {
40- ResourceName : "google_dataplex_entry_group.test_entry_group_basic " ,
40+ ResourceName : "google_dataplex_entry_group.test_entry_group " ,
4141 ImportState : true ,
4242 ImportStateVerify : true ,
4343 ImportStateVerifyIgnore : []string {"location" , "entry_group_id" , "labels" , "terraform_labels" },
@@ -48,24 +48,24 @@ func TestAccDataplexEntryGroup_update(t *testing.T) {
4848
4949func testAccDataplexEntryGroup_full (context map [string ]interface {}) string {
5050 return acctest .Nprintf (`
51- resource "google_dataplex_entry_group" "test_entry_group_full " {
52- entry_group_id = "tf-test-entry-group-full %{random_suffix}"
51+ resource "google_dataplex_entry_group" "test_entry_group " {
52+ entry_group_id = "tf-test-entry-group%{random_suffix}"
5353 project = "%{project_name}"
5454 location = "us-central1"
55-
56- labels = { "tag": "test-tf" }
57- display_name = "terraform entry group"
58- description = "entry group created by Terraform"
5955}
6056` , context )
6157}
6258
6359func testAccDataplexEntryGroup_update (context map [string ]interface {}) string {
6460 return acctest .Nprintf (`
65- resource "google_dataplex_entry_group" "test_entry_group_basic " {
66- entry_group_id = "tf-test-entry-group-basic %{random_suffix}"
61+ resource "google_dataplex_entry_group" "test_entry_group " {
62+ entry_group_id = "tf-test-entry-group%{random_suffix}"
6763 project = "%{project_name}"
6864 location = "us-central1"
65+
66+ labels = { "tag": "test-tf" }
67+ display_name = "terraform entry group"
68+ description = "entry group created by Terraform"
6969}
7070` , context )
7171}
0 commit comments