You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"google_bigquery_table_iam_member" {
source="./modules/google-beta/r/google_bigquery_table_iam_member"# dataset_id - (required) is a type of stringdataset_id=null# member - (required) is a type of stringmember=null# project - (optional) is a type of stringproject=null# role - (required) is a type of stringrole=null# table_id - (required) is a type of stringtable_id=nullcondition=[{
description =null
expression =null
title =null
}]
}
resource"google_bigquery_table_iam_member""this" {
# dataset_id - (required) is a type of stringdataset_id=var.dataset_id# member - (required) is a type of stringmember=var.member# project - (optional) is a type of stringproject=var.project# role - (required) is a type of stringrole=var.role# table_id - (required) is a type of stringtable_id=var.table_iddynamic"condition" {
for_each=var.conditioncontent {
# description - (optional) is a type of stringdescription=condition.value["description"]
# expression - (required) is a type of stringexpression=condition.value["expression"]
# title - (required) is a type of stringtitle=condition.value["title"]
}
}
}