Fix google_compute_image data example (#3271)

The example specifies an image family, not a specific image
This commit is contained in:
Andreas Sekine 2019-05-06 16:06:45 -07:00 committed by Dana Hoffman
parent 828636d514
commit 8c21fef063

View File

@ -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"
}