diff --git a/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_management_server_test.go.erb b/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_management_server_test.go.erb index ff8ed58c84da..f79b64488de4 100644 --- a/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_management_server_test.go.erb +++ b/mmv1/third_party/terraform/services/backupdr/data_source_backup_dr_management_server_test.go.erb @@ -33,24 +33,24 @@ func TestAccDataSourceGoogleBackupDRManagementServer_basic(t *testing.T) { func testAccDataSourceGoogleBackupDRManagementServer_basic(context map[string]interface{}) string { return acctest.Nprintf(` - resource "google_compute_network" "default" { - name = "vpc-network" - } - - resource "google_backup_dr_management_server" "foo" { - location = "us-central1" - name = "management-server-1" - type = "BACKUP_RESTORE" - networks { - network = google_compute_network.default.id - peering_mode = "PRIVATE_SERVICE_ACCESS" - } - } - - data "google_backup_dr_management_server" "foo" { - location = "us-central1" - depends_on = [ google_backup_dr_management_server.foo ] - } +resource "google_compute_network" "default" { + name = "vpc-network" +} + +resource "google_backup_dr_management_server" "foo" { + location = "us-central1" + name = "management-server-1" + type = "BACKUP_RESTORE" + networks { + network = google_compute_network.default.id + peering_mode = "PRIVATE_SERVICE_ACCESS" + } +} + +data "google_backup_dr_management_server" "foo" { + location = "us-central1" + depends_on = [ google_backup_dr_management_server.foo ] +} `, context) } <% end -%> \ No newline at end of file