terraform-provider-azuredevops
terraform-provider-azuredevops copied to clipboard
[Feature request] Add support for custom service endpoints
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
Add support for custom service endpoints. For example I'd like to define a SonarCloud service endpoint.
New or Affected Resource(s)
- azuredevops_serviceendpoint_custom
Potential Terraform Configuration
resource "azuredevops_serviceendpoint_custom" "SonarCloud" {
project_id = azuredevops_project.project.id
service_endpoint_name = "Sample Docker Hub"
configuration = <<XML
<content>
</content>
XML
}