Skip to content

Commit

Permalink
Restore the deprecated list splat syntax. (hashicorp#314)
Browse files Browse the repository at this point in the history
<!-- This change is generated by MagicModules. -->
/cc @rileykarson
  • Loading branch information
modular-magician authored and rileykarson committed Jan 4, 2019
1 parent fea30f3 commit cc333ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions google-beta/resource_compute_instance_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ func testAccComputeInstanceGroup_update(instance string) string {
description = "Terraform test instance group"
name = "%s"
zone = "us-central1-c"
instances = "${google_compute_instance.ig_instance.*.self_link}"
instances = ["${google_compute_instance.ig_instance.*.self_link}"]
named_port {
name = "http"
port = "8080"
Expand Down Expand Up @@ -526,7 +526,7 @@ func testAccComputeInstanceGroup_update2(instance string) string {
description = "Terraform test instance group"
name = "%s"
zone = "us-central1-c"
instances = "${google_compute_instance.ig_instance.*.self_link}"
instances = ["${google_compute_instance.ig_instance.*.self_link}"]
named_port {
name = "http"
Expand Down Expand Up @@ -570,7 +570,7 @@ func testAccComputeInstanceGroup_recreateInstances(instance string) string {
description = "Terraform test instance group"
name = "%s"
zone = "us-central1-c"
instances = "${google_compute_instance.ig_instance.*.self_link}"
instances = ["${google_compute_instance.ig_instance.*.self_link}"]
named_port {
name = "http"
port = "8080"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/compute_router_nat.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ resource "google_compute_router_nat" "advanced-nat" {
router = "${google_compute_router.router.name}"
region = "us-central1"
nat_ip_allocate_option = "MANUAL_ONLY"
nat_ips = "${google_compute_address.address.*.self_link}"
nat_ips = ["${google_compute_address.address.*.self_link}"]
source_subnetwork_ip_ranges_to_nat = "LIST_OF_SUBNETWORKS"
subnetwork {
name = "${google_compute_subnetwork.subnetwork.self_link}"
Expand Down

0 comments on commit cc333ab

Please sign in to comment.