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_dataset_sql_server_table" {
source="./modules/azurerm/r/azurerm_data_factory_dataset_sql_server_table"# additional_properties - (optional) is a type of map of stringadditional_properties={}
# 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# folder - (optional) is a type of stringfolder=null# linked_service_name - (required) is a type of stringlinked_service_name=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# table_name - (optional) is a type of stringtable_name=nullschema_column=[{
description =null
name =null
type =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_data_factory_dataset_sql_server_table""this" {
# additional_properties - (optional) is a type of map of stringadditional_properties=var.additional_properties# 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# folder - (optional) is a type of stringfolder=var.folder# linked_service_name - (required) is a type of stringlinked_service_name=var.linked_service_name# 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# table_name - (optional) is a type of stringtable_name=var.table_namedynamic"schema_column" {
for_each=var.schema_columncontent {
# description - (optional) is a type of stringdescription=schema_column.value["description"]
# name - (required) is a type of stringname=schema_column.value["name"]
# type - (optional) is a type of stringtype=schema_column.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"]
}
}
}