Skip to content

Commit

Permalink
Update mmv1/third_party/terraform/services/backupdr/data_source_backu…
Browse files Browse the repository at this point in the history
…p_dr_management_server_test.go.erb
  • Loading branch information
shuyama1 authored Nov 1, 2023
1 parent 9de6310 commit 32950f7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ 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"
data "google_compute_network" "default" {
name = "%{network_name}"
}

resource "google_backup_dr_management_server" "foo" {
location = "us-central1"
name = "management-server-1"
name = "tf-test-management-server%{random_suffix}"
type = "BACKUP_RESTORE"
networks {
network = google_compute_network.default.id
network = data.google_compute_network.default.id
peering_mode = "PRIVATE_SERVICE_ACCESS"
}
}
Expand Down

0 comments on commit 32950f7

Please sign in to comment.