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_stream_analytics_function_javascript_udf" {
source="./modules/azurerm/r/azurerm_stream_analytics_function_javascript_udf"# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# script - (required) is a type of stringscript=null# stream_analytics_job_name - (required) is a type of stringstream_analytics_job_name=nullinput=[{
type =null
}]
output=[{
type =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_stream_analytics_function_javascript_udf""this" {
# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# script - (required) is a type of stringscript=var.script# stream_analytics_job_name - (required) is a type of stringstream_analytics_job_name=var.stream_analytics_job_namedynamic"input" {
for_each=var.inputcontent {
# type - (required) is a type of stringtype=input.value["type"]
}
}
dynamic"output" {
for_each=var.outputcontent {
# type - (required) is a type of stringtype=output.value["type"]
}
}
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"]
}
}
}