Skip to content

Latest commit

 

History

History
97 lines (63 loc) · 3.82 KB

data_factory_dataset_mysql.html.markdown

File metadata and controls

97 lines (63 loc) · 3.82 KB
subcategory layout page_title description
Data Factory
azurerm
Azure Resource Manager: azurerm_data_factory_dataset_mysql
Manages a MySQL Dataset inside a Azure Data Factory.

azurerm_data_factory_dataset_mysql

Manages a MySQL Dataset inside a Azure Data Factory.

Example Usage

resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_data_factory" "example" {
  name                = "example"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name
}

resource "azurerm_data_factory_linked_service_mysql" "example" {
  name              = "example"
  data_factory_id   = azurerm_data_factory.example.id
  connection_string = "Server=test;Port=3306;Database=test;User=test;SSLMode=1;UseSystemTrustStore=0;Password=test"
}

resource "azurerm_data_factory_dataset_mysql" "example" {
  name                = "example"
  data_factory_id     = azurerm_data_factory.example.id
  linked_service_name = azurerm_data_factory_linked_service_mysql.example.name
}

Argument Reference

The following supported arguments are common across all Azure Data Factory Datasets:

  • name - (Required) Specifies the name of the Data Factory Dataset MySQL. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

  • data_factory_id - (Required) The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.

  • linked_service_name - (Required) The Data Factory Linked Service name in which to associate the Dataset with.

  • folder - (Optional) The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.

  • schema_column - (Optional) A schema_column block as defined below.

  • description - (Optional) The description for the Data Factory Dataset MySQL.

  • annotations - (Optional) List of tags that can be used for describing the Data Factory Dataset MySQL.

  • parameters - (Optional) A map of parameters to associate with the Data Factory Dataset MySQL.

  • additional_properties - (Optional) A map of additional properties to associate with the Data Factory Dataset MySQL.

The following supported arguments are specific to MySQL Dataset:

  • table_name - (Optional) The table name of the Data Factory Dataset MySQL.

A schema_column block supports the following:

  • name - (Required) The name of the column.

  • type - (Optional) Type of the column. Valid values are Byte, Byte[], Boolean, Date, DateTime,DateTimeOffset, Decimal, Double, Guid, Int16, Int32, Int64, Single, String, TimeSpan. Please note these values are case sensitive.

  • description - (Optional) The description of the column.

Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:

  • id - The ID of the Data Factory MySQL Dataset.

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • create - (Defaults to 30 minutes) Used when creating the Data Factory MySQL Dataset.
  • update - (Defaults to 30 minutes) Used when updating the Data Factory MySQL Dataset.
  • read - (Defaults to 5 minutes) Used when retrieving the Data Factory MySQL Dataset.
  • delete - (Defaults to 30 minutes) Used when deleting the Data Factory MySQL Dataset.

Import

Data Factory MySQL Datasets can be imported using the resource id, e.g.

terraform import azurerm_data_factory_dataset_mysql.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/datasets/example