terraform-provider-azuredevops icon indicating copy to clipboard operation
terraform-provider-azuredevops copied to clipboard

[Feature request] Add support for custom service endpoints

Open DamonStamper opened this issue 4 years ago • 5 comments

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

}

DamonStamper avatar Aug 07 '20 17:08 DamonStamper