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"vsphere_entity_permissions" {
source="./modules/vsphere/r/vsphere_entity_permissions"# entity_id - (required) is a type of stringentity_id=null# entity_type - (required) is a type of stringentity_type=nullpermissions=[{
is_group =null
propagate =null
role_id =null
user_or_group =null
}]
}
resource"vsphere_entity_permissions""this" {
# entity_id - (required) is a type of stringentity_id=var.entity_id# entity_type - (required) is a type of stringentity_type=var.entity_typedynamic"permissions" {
for_each=var.permissionscontent {
# is_group - (required) is a type of boolis_group=permissions.value["is_group"]
# propagate - (required) is a type of boolpropagate=permissions.value["propagate"]
# role_id - (required) is a type of stringrole_id=permissions.value["role_id"]
# user_or_group - (required) is a type of stringuser_or_group=permissions.value["user_or_group"]
}
}
}