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_eventhub_namespace_authorization_rule" {
source="./modules/azurerm/r/azurerm_eventhub_namespace_authorization_rule"# listen - (optional) is a type of boollisten=null# manage - (optional) is a type of boolmanage=null# name - (required) is a type of stringname=null# namespace_name - (required) is a type of stringnamespace_name=null# resource_group_name - (required) is a type of stringresource_group_name=null# send - (optional) is a type of boolsend=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_eventhub_namespace_authorization_rule""this" {
# listen - (optional) is a type of boollisten=var.listen# manage - (optional) is a type of boolmanage=var.manage# name - (required) is a type of stringname=var.name# namespace_name - (required) is a type of stringnamespace_name=var.namespace_name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# send - (optional) is a type of boolsend=var.senddynamic"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"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}