Skip to content

Commit

Permalink
provider/google: Fixed typo in resource_compute_instance_group_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
tmshn committed Jun 6, 2017
1 parent c65eca2 commit 4aa065c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4aa065c

Please sign in to comment.