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_api_management_logger" {
source="./modules/azurerm/r/azurerm_api_management_logger"# api_management_name - (required) is a type of stringapi_management_name=null# buffered - (optional) is a type of boolbuffered=null# description - (optional) is a type of stringdescription=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# resource_id - (optional) is a type of stringresource_id=nullapplication_insights=[{
instrumentation_key =null
}]
eventhub=[{
connection_string =null
name =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_api_management_logger""this" {
# api_management_name - (required) is a type of stringapi_management_name=var.api_management_name# buffered - (optional) is a type of boolbuffered=var.buffered# description - (optional) is a type of stringdescription=var.description# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# resource_id - (optional) is a type of stringresource_id=var.resource_iddynamic"application_insights" {
for_each=var.application_insightscontent {
# instrumentation_key - (required) is a type of stringinstrumentation_key=application_insights.value["instrumentation_key"]
}
}
dynamic"eventhub" {
for_each=var.eventhubcontent {
# connection_string - (required) is a type of stringconnection_string=eventhub.value["connection_string"]
# name - (required) is a type of stringname=eventhub.value["name"]
}
}
dynamic"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"]
}
}
}