From da579eb0561436dea63a094bf760b253e9c6215a Mon Sep 17 00:00:00 2001 From: Ludovico Magnocavallo Date: Sun, 3 May 2020 11:43:11 +0200 Subject: [PATCH] Update README.md --- modules/bigquery-dataset/README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/modules/bigquery-dataset/README.md b/modules/bigquery-dataset/README.md index 7294cd77..3c9f17e1 100644 --- a/modules/bigquery-dataset/README.md +++ b/modules/bigquery-dataset/README.md @@ -13,13 +13,11 @@ module "bigquery-dataset" { source = "./modules/bigquery-dataset" project_id = "my-project id = "my-dataset" - access = [ - { - role = "OWNER" - identity_type = "group_by_email" - identity = "dataset-owners@example.com" - } - ] + access = { + "OWNER" = [ + { identity_type = "group_by_email", identity = "dataset-owners@example.com" } + ] + } } ```