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_kms_crypto_key_iam_binding" {
source="./modules/google-beta/r/google_kms_crypto_key_iam_binding"# crypto_key_id - (required) is a type of stringcrypto_key_id=null# members - (required) is a type of set of stringmembers=[]
# role - (required) is a type of stringrole=nullcondition=[{
description =null
expression =null
title =null
}]
}
resource"google_kms_crypto_key_iam_binding""this" {
# crypto_key_id - (required) is a type of stringcrypto_key_id=var.crypto_key_id# members - (required) is a type of set of stringmembers=var.members# 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"]
}
}
}