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_data_factory_pipeline" {
source="./modules/azurerm/r/azurerm_data_factory_pipeline"# activities_json - (optional) is a type of stringactivities_json=null# annotations - (optional) is a type of list of stringannotations=[]
# data_factory_name - (required) is a type of stringdata_factory_name=null# description - (optional) is a type of stringdescription=null# name - (required) is a type of stringname=null# parameters - (optional) is a type of map of stringparameters={}
# resource_group_name - (required) is a type of stringresource_group_name=null# variables - (optional) is a type of map of stringvariables={}
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_data_factory_pipeline""this" {
# activities_json - (optional) is a type of stringactivities_json=var.activities_json# annotations - (optional) is a type of list of stringannotations=var.annotations# data_factory_name - (required) is a type of stringdata_factory_name=var.data_factory_name# description - (optional) is a type of stringdescription=var.description# name - (required) is a type of stringname=var.name# parameters - (optional) is a type of map of stringparameters=var.parameters# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# variables - (optional) is a type of map of stringvariables=var.variablesdynamic"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"]
}
}
}