Skip to content

Commit

Permalink
azurerm_synapse_linked_service - update document example (#19768)
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-henglu committed Dec 22, 2022
1 parent 963984d commit 9dbe4da
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions website/docs/r/synapse_linked_service.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ resource "azurerm_synapse_firewall_rule" "example" {
end_ip_address = "255.255.255.255"
}
resource "azurerm_synapse_integration_runtime_azure" "example" {
name = "example"
synapse_workspace_id = azurerm_synapse_workspace.example.id
location = azurerm_resource_group.example.location
}
resource "azurerm_synapse_linked_service" "example" {
name = "example"
synapse_workspace_id = azurerm_synapse_workspace.example.id
Expand All @@ -62,6 +68,9 @@ resource "azurerm_synapse_linked_service" "example" {
"connectionString": "${azurerm_storage_account.example.primary_connection_string}"
}
JSON
integration_runtime {
name = azurerm_synapse_integration_runtime_azure.example.name
}
depends_on = [
azurerm_synapse_firewall_rule.example,
Expand Down

0 comments on commit 9dbe4da

Please sign in to comment.