Update README.md

This commit is contained in:
Ludovico Magnocavallo 2020-05-03 11:43:11 +02:00 committed by GitHub
parent 89165ac68d
commit da579eb056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 7 deletions

View File

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