Documentation: fixed TF syntax in google_iam_policy example (#3083)

I found some TF syntax errors in google_iam_policy data source, so here's the fix.
This commit is contained in:
Marcin Kołda 2019-03-07 17:55:36 +01:00 committed by Riley Karson
parent 10d1e8b052
commit 7573f65a56

View File

@ -36,13 +36,13 @@ data "google_iam_policy" "admin" {
log_type = "DATA_READ",
exempted_members = ["user:you@domain.com"]
}
audit_log_configs {
"logType": "DATA_WRITE",
log_type = "DATA_WRITE",
}
audit_log_configs {
"logType": "ADMIN_READ",
log_type = "ADMIN_READ",
}
}
}