diff --git a/builtin/providers/google/resource_compute_instance_group_test.go b/builtin/providers/google/resource_compute_instance_group_test.go index 72d1993c7b9a..0094a45b0b65 100644 --- a/builtin/providers/google/resource_compute_instance_group_test.go +++ b/builtin/providers/google/resource_compute_instance_group_test.go @@ -454,14 +454,14 @@ func testAccComputeInstanceGroup_network(instance string) string { resource "google_compute_instance_group" "with_instance" { description = "Terraform test instance group" - name = "%[1]s-with-insntance" + name = "%[1]s-with-instance" zone = "us-central1-c" instances = [ "${google_compute_instance.ig_instance.self_link}" ] } resource "google_compute_instance_group" "without_instance" { description = "Terraform test instance group" - name = "%[1]s-without-insntance" + name = "%[1]s-without-instance" zone = "us-central1-c" network = "${google_compute_network.ig_network.self_link}" }`, instance)