Add azuredevops_serviceendpoint_incomingwebhook resource #531
Closed
Description
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
One of the supported service endpoint types in Azure DevOps is the incomingwebhook
. I would like this to be available as a resource in the azuredevops
provider.
New or Affected Resource(s)
- azuredevops_serviceendpoint_incomingwebhook
Potential Terraform Configuration
resource "azuredevops_project" "project" {
name = "Sample Project"
visibility = "private"
version_control = "Git"
work_item_template = "Agile"
}
resource "azuredevops_serviceendpoint_incomingwebhook" "serviceendpoint" {
project_id = azuredevops_project.project.id
webhook_name = "My Incoming Webhook"
secret = "secretTextForPayloadChecksum"
service_endpoint_name = "Sample Incoming Webhook"
description = "Managed by Terraform"
}
References
More information on using the webhook can be found in the Azure DevOps docs.
Activity