azuredevops_serviceendpoint_sonarqube

Manages a SonarQube service endpoint within Azure DevOps.

Example Usage

resource "azuredevops_project" "example" {
  name               = "Example Project"
  visibility         = "private"
  version_control    = "Git"
  work_item_template = "Agile"
  description        = "Managed by Terraform"
}

resource "azuredevops_serviceendpoint_sonarqube" "example" {
  project_id            = azuredevops_project.example.id
  service_endpoint_name = "Example SonarQube"
  url                   = "https://sonarqube.my.com"
  token                 = "0000000000000000000000000000000000000000"
  description           = "Managed by Terraform"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

Azure DevOps Service Endpoint SonarQube can be imported using the projectID/serviceEndpointID, e.g.

terraform import azuredevops_serviceendpoint_sonarqube.example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000