Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Azure Data Factory Linked Service to Synapse resource #9919

Closed
allantargino opened this issue Dec 17, 2020 · 3 comments · Fixed by #9928
Closed

Support for Azure Data Factory Linked Service to Synapse resource #9919

allantargino opened this issue Dec 17, 2020 · 3 comments · Fixed by #9928

Comments

@allantargino
Copy link
Contributor

allantargino commented Dec 17, 2020

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

we should add a resource for Azure Data Factory Linked Service to Synapse.

New or Affected Resource(s)

  • azurerm_data_factory_linked_service_synapse

Potential Terraform Configuration

Using a connection string with password:

resource "azurerm_data_factory_linked_service_synapse" "example" {
  name = "adf-link-synapse"
  resource_group_name = azurerm_resource_group.example.name
  data_factory_name = azurerm_data_factory.example.name

  connection_string = "data source=serverhostname;initial catalog=master;user id=testUser;Password=...;Timeout=30;"
}

or using a key vault linked service to store the password:

resource "azurerm_data_factory_linked_service_synapse" "example" {
  name                = "adf-link-synapse"
  resource_group_name = azurerm_resource_group.example.name
  data_factory_name   = azurerm_data_factory.example.name

  connection_string = "data source=serverhostname;initial catalog=master;user id=testUser;Timeout=30;"
  key_vault_password {
    linked_service_name  = "adf-link-key-vault"
    secret_name = "synapse-connection-string"
  }
}

References

@allantargino
Copy link
Contributor Author

I am working on this feature.

katbyte pushed a commit that referenced this issue Jan 1, 2021
fix #9919

This PR introduces the new resource azurerm_data_factory_linked_service_synapse.
@katbyte katbyte added this to the v2.42.0 milestone Jan 1, 2021
@ghost
Copy link

ghost commented Jan 8, 2021

This has been released in version 2.42.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example:

provider "azurerm" {
    version = "~> 2.42.0"
}
# ... other configuration ...

@ghost
Copy link

ghost commented Feb 1, 2021

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 hashibot-feedback@hashicorp.com. Thanks!

@ghost ghost locked as resolved and limited conversation to collaborators Feb 1, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants