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_artifact_registry_repository_iam_binding" {
source="./modules/google-beta/r/google_artifact_registry_repository_iam_binding"# location - (optional) is a type of stringlocation=null# members - (required) is a type of set of stringmembers=[]
# project - (optional) is a type of stringproject=null# repository - (required) is a type of stringrepository=null# role - (required) is a type of stringrole=nullcondition=[{
description =null
expression =null
title =null
}]
}
resource"google_artifact_registry_repository_iam_binding""this" {
# location - (optional) is a type of stringlocation=var.location# members - (required) is a type of set of stringmembers=var.members# project - (optional) is a type of stringproject=var.project# repository - (required) is a type of stringrepository=var.repository# role - (required) is a type of stringrole=var.roledynamic"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"]
}
}
}