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"azurerm_synapse_role_assignment" {
source="./modules/azurerm/r/azurerm_synapse_role_assignment"# principal_id - (required) is a type of stringprincipal_id=null# role_name - (required) is a type of stringrole_name=null# synapse_workspace_id - (required) is a type of stringsynapse_workspace_id=nulltimeouts=[{
create =null
delete =null
read =null
}]
}
resource"azurerm_synapse_role_assignment""this" {
# principal_id - (required) is a type of stringprincipal_id=var.principal_id# role_name - (required) is a type of stringrole_name=var.role_name# synapse_workspace_id - (required) is a type of stringsynapse_workspace_id=var.synapse_workspace_iddynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
}
}
}