From 8c21fef0631cbf9cb7d80988f0b40916a4406984 Mon Sep 17 00:00:00 2001 From: Andreas Sekine Date: Mon, 6 May 2019 16:06:45 -0700 Subject: [PATCH] Fix google_compute_image data example (#3271) The example specifies an image family, not a specific image --- website/docs/d/datasource_compute_image.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/d/datasource_compute_image.html.markdown b/website/docs/d/datasource_compute_image.html.markdown index ded07fbf..0a3a5056 100644 --- a/website/docs/d/datasource_compute_image.html.markdown +++ b/website/docs/d/datasource_compute_image.html.markdown @@ -15,7 +15,7 @@ Get information about a Google Compute Image. Check that your service account ha ```hcl data "google_compute_image" "my_image" { - name = "debian-9" + family = "debian-9" project = "debian-cloud" }