Azure Data Factory Linked Service Cosmosdb
This page shows how to write Terraform and Azure Resource Manager for Data Factory Linked Service Cosmosdb and write them securely.
azurerm_data_factory_linked_service_cosmosdb (Terraform)
The Linked Service Cosmosdb in Data Factory can be configured in Terraform with the resource name azurerm_data_factory_linked_service_cosmosdb
. The following sections describe 7 examples of how to use the resource and its parameters.
Example Usage from GitHub
resource "azurerm_data_factory_linked_service_cosmosdb" "cosmosdb_linkedsvc" {
name = var.service_settings.name
resource_group_name = var.context.resource_group_name
data_factory_name = var.service_settings.data_factory_name
connection_string = var.service_settings.connection_string
}
resource "azurerm_data_factory_linked_service_cosmosdb" "cosmosdb_linkedsvc" {
name = var.service_settings.name
resource_group_name = var.context.resource_group_name
data_factory_name = var.service_settings.data_factory_name
connection_string = var.service_settings.connection_string
}
resource "azurerm_data_factory_linked_service_cosmosdb" "linked_service_cosmosdb" {
name = var.name
resource_group_name = var.resource_group_name
data_factory_name = var.data_factory_name
description = try(var.description, null)
integration_runtime_name = try(var.integration_runtime_name, null)
resource "azurerm_data_factory_linked_service_cosmosdb" "linked_service_cosmosdb" {
name = var.name
resource_group_name = var.resource_group_name
data_factory_name = var.data_factory_name
description = try(var.description, null)
integration_runtime_name = try(var.integration_runtime_name, null)
resource "azurerm_data_factory_linked_service_cosmosdb" "linked_service_cosmosdb" {
name = azurecaf_name.linked_service_cosmosdb.result
resource_group_name = var.resource_group_name
data_factory_name = var.data_factory_name
description = try(var.settings.description, null)
integration_runtime_name = try(var.settings.integration_runtime_name, null)
resource "azurerm_data_factory_linked_service_cosmosdb" "linked_service_cosmosdb" {
name = var.name
resource_group_name = var.resource_group_name
data_factory_name = var.data_factory_name
description = try(var.description, null)
integration_runtime_name = try(var.integration_runtime_name, null)
resource "azurerm_data_factory_linked_service_cosmosdb" "airq-df-cdb" {
name = "airq-df-cdb"
resource_group_name = azurerm_resource_group.airq-rg.name
data_factory_name = azurerm_data_factory.airq-df.name
account_endpoint = azurerm_cosmosdb_account.airq-cosmos.endpoint
account_key = azurerm_cosmosdb_account.airq-cosmos.primary_key
Parameters
-
account_endpoint
optional - string -
account_key
optional - string -
additional_properties
optional - map from string to string -
annotations
optional - list of string -
connection_string
optional - string -
data_factory_name
required - string -
database
optional - string -
description
optional - string -
id
optional computed - string -
integration_runtime_name
optional - string -
name
required - string -
parameters
optional - map from string to string -
resource_group_name
required - string -
timeouts
single block
Explanation in Terraform Registry
Manages a Linked Service (connection) between a CosmosDB and Azure Data Factory using SQL API.
Note: All arguments including the client secret will be stored in the raw state as plain-text. Read more about sensitive data in state.
Tips: Best Practices for The Other Azure Data Factory Resources
In addition to the azurerm_data_factory, Azure Data Factory has the other resources that should be configured for security reasons. Please check some examples of those resources and precautions.
azurerm_data_factory
Ensure to disable public access
It is better to disable public access for Data Factory, which is enabled as default.
Microsoft.DataFactory/factories/linkedservices (Azure Resource Manager)
The factories/linkedservices in Microsoft.DataFactory can be configured in Azure Resource Manager with the resource name Microsoft.DataFactory/factories/linkedservices
. The following sections describe how to use the resource and its parameters.
Example Usage from GitHub
An example could not be found in GitHub.
Parameters
apiVersion
required - stringname
required - stringThe linked service name.
properties
requiredadditionalProperties
optional - objectUnmatched properties from the message are deserialized this collection
annotations
optional - arrayList of tags that can be used for describing the linked service.
connectVia
optionalparameters
optional - objectAn object mapping parameter names to argument values.
referenceName
required - stringReference integration runtime name.
type
required - stringType of integration runtime.
description
optional - stringLinked service description.
parameters
optional - undefinedDefinition of all parameters for an entity.
type
required - string
Frequently asked questions
What is Azure Data Factory Linked Service Cosmosdb?
Azure Data Factory Linked Service Cosmosdb is a resource for Data Factory of Microsoft Azure. Settings can be wrote in Terraform.
Where can I find the example code for the Azure Data Factory Linked Service Cosmosdb?
For Terraform, the aadi555/azurerm, persistentsystems/terraform-azurerm and anmoltoppo/Terraform source code examples are useful. See the Terraform Example section for further details.