{"id":29177743,"url":"https://github.com/totvs/pulumi-azuredevops-extensions","last_synced_at":"2026-04-17T12:33:32.831Z","repository":{"id":45330260,"uuid":"427147406","full_name":"totvs/pulumi-azuredevops-extensions","owner":"totvs","description":"Minimum Pulumi native provider to complement the original Azure DevOps provider","archived":false,"fork":false,"pushed_at":"2022-02-25T14:45:04.000Z","size":234,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-06-20T00:27:23.095Z","etag":null,"topics":["azure","azuredevops","provider","pulumi"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/totvs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-11T21:24:43.000Z","updated_at":"2021-12-20T19:46:53.000Z","dependencies_parsed_at":"2022-09-26T20:21:48.272Z","dependency_job_id":null,"html_url":"https://github.com/totvs/pulumi-azuredevops-extensions","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/totvs/pulumi-azuredevops-extensions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/totvs%2Fpulumi-azuredevops-extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/totvs%2Fpulumi-azuredevops-extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/totvs%2Fpulumi-azuredevops-extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/totvs%2Fpulumi-azuredevops-extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/totvs","download_url":"https://codeload.github.com/totvs/pulumi-azuredevops-extensions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/totvs%2Fpulumi-azuredevops-extensions/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263013730,"owners_count":23399814,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure","azuredevops","provider","pulumi"],"created_at":"2025-07-01T18:07:56.783Z","updated_at":"2026-04-17T12:33:27.809Z","avatar_url":"https://github.com/totvs.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Intro\nThis provider was created to complement the original [AzureDevOps Provider](https://www.pulumi.com/registry/packages/azuredevops). The original provider doesn't have resource environments to support pipelines as yaml code. In the future, maybe, we'll have this feature and this provider will be deprecated.\n\n## Permissions\n\nYou need to create a new personal access token (PAT) for an Azure DevOps account. See the list of needed permissions below:\n\n```yaml\nService Connections:\n- Read\nEnvironment:\n- Read \u0026 manage\n```\n\n## Environment\n\nYou can set Azure DevOps token and organization service url with:\n\n```sh\nexport AZDO_PERSONAL_ACCESS_TOKEN=ahdflakjsdhdfkajsdhdflkajshdflakjs34t9813h4v134ht3i4\nexport AZDO_ORG_SERVICE_URL=https://dev.azure.com/typeorganizationhere\nexport NUMBER_OF_ATTEMPTS=3\n```\nor\n```sh\npulumi config set --secret azuredevops-extensions:config:orgServiceUrl https://dev.azure.com/typeorganizationhere\npulumi config set --secret azuredevops-extensions:config:personalAccessToken ahdflakjsdhdfkajsdhdflkajshdflakjs34t9813h4v134ht3i4\npulumi config set --secret azuredevops-extensions:config:numberOfAttempts 3\n```\n\n# Installation\n\nYou can install the plugin with these commands:\n\n```bash\nwget https://github.com/totvs/pulumi-azuredevops-extensions/releases/download/v0.0.2-alpha.1636747691%2Bbb5b83c8/pulumi-resource-azuredevops-extensions-v0.0.2-alpha.1636747691+bb5b83c8-linux-amd64.tar.gz\n\npulumi plugin install resource azuredevops-extensions 0.0.2 -f pulumi-resource-azuredevops-extensions-v0.0.2-alpha.1636747691+bb5b83c8-linux-amd64.tar.gz\n```\n\n# Import\n\n## Build pipeline folder import\nTo import build pipeline folder, use the following format ```\u003cazuredevops-project-id\u003e\\/\u003cfolder-name\u003e```. Example:\n\n```sh\npulumi import 'azuredevops-extensions:index:BuildFolder' 'totvsapps-dev-folder' '5687c295-d324-41c7-a430-5a50f190a0c1\\/totvsapps-dev'\n```\n\n# Usage\nSee the example in go language [here](https://github.com/totvs/pulumi-azuredevops-extensions/tree/master/examples/go).\n\n# Development\n## Pre-requisites to develop\n\nInstall the `pulumictl` cli from the [releases](https://github.com/pulumi/pulumictl/releases) page or follow the [install instructions](https://github.com/pulumi/pulumictl#installation)\n\n\u003e NB: Usage of `pulumictl` is optional. If not using it, hard code the version in the [Makefile](Makefile) of when building explicitly pass version as `VERSION=0.0.1 make build`\n\n## Build and Test\n\n```bash\n# build and install the resource provider plugin\n$ make build install\n\n# test\n$ cd examples/go\n$ yarn link @pulumi/azuredevops-extensions\n$ yarn install\n$ pulumi stack init test\n$ pulumi up\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftotvs%2Fpulumi-azuredevops-extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftotvs%2Fpulumi-azuredevops-extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftotvs%2Fpulumi-azuredevops-extensions/lists"}