Manages an Azure Repos/Team Foundation Server service endpoint within Azure DevOps.
resource "azuredevops_project" "example" {
name = "Example Project"
visibility = "private"
version_control = "Git"
work_item_template = "Agile"
description = "Managed by Terraform"
}
resource "azuredevops_serviceendpoint_externaltfs" "example" {
project_id = azuredevops_project.example.id
service_endpoint_name = "Example External TFS Name"
url = "https://dev.azure.com/myorganization"
description = "Managed by Terraform"
auth_personal {
# Also can be set with AZDO_PERSONAL_ACCESS_TOKEN environment variable
personal_access_token = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
The following arguments are supported:
project_id
- (Required) The ID of the project.service_endpoint_name
- (Required) The Service Endpoint name.url
- (Required) Azure DevOps Organization or TFS Project Collection Url.auth_personal
- (Required) An auth_personal
block as documented below. Allows connecting using a personal access token.description
- (Optional) The Service Endpoint description. Defaults to Managed by Terraform
.auth_personal
block supports the following:
personal_access_token
- (Required) The Personal Access Token for Azure DevOps Organization.The following attributes are exported:
id
- The ID of the service endpoint.project_id
- The ID of the project.service_endpoint_name
- The Service Endpoint name.Azure DevOps Service Endpoint External TFS can be imported using projectID/serviceEndpointID or projectName/serviceEndpointID
terraform import azuredevops_serviceendpoint_externaltfs.example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000