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_authorization_rule" {
source="./modules/azurerm/d/azurerm_eventhub_authorization_rule"# eventhub_name - (required) is a type of stringeventhub_name=null# 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=[{
read =null
}]
}
data"azurerm_eventhub_authorization_rule""this" {
# eventhub_name - (required) is a type of stringeventhub_name=var.eventhub_name# 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 {
# read - (optional) is a type of stringread=timeouts.value["read"]
}
}
}