{"id":24284432,"url":"https://github.com/JacobHenner/puppet-azure_pipelines","last_synced_at":"2025-09-25T05:30:27.926Z","repository":{"id":32736493,"uuid":"108932624","full_name":"JacobHenner/puppet-azure_pipelines","owner":"JacobHenner","description":"Puppet module for managing Azure Pipelines, VSTS, TFS agents","archived":false,"fork":false,"pushed_at":"2023-05-03T10:04:40.000Z","size":27,"stargazers_count":1,"open_issues_count":8,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-28T20:50:07.621Z","etag":null,"topics":["azure-devops","azure-pipelines","puppet","vsts","vsts-agent"],"latest_commit_sha":null,"homepage":"","language":"Puppet","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JacobHenner.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-10-31T02:11:38.000Z","updated_at":"2018-12-02T18:04:29.000Z","dependencies_parsed_at":"2023-07-12T14:57:15.161Z","dependency_job_id":null,"html_url":"https://github.com/JacobHenner/puppet-azure_pipelines","commit_stats":{"total_commits":16,"total_committers":2,"mean_commits":8.0,"dds":0.0625,"last_synced_commit":"5e1f3fec3fbcb21e0d21b2950d992f37759eeef5"},"previous_names":["jacobhenner/vsts_agent"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/JacobHenner/puppet-azure_pipelines","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobHenner%2Fpuppet-azure_pipelines","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobHenner%2Fpuppet-azure_pipelines/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobHenner%2Fpuppet-azure_pipelines/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobHenner%2Fpuppet-azure_pipelines/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JacobHenner","download_url":"https://codeload.github.com/JacobHenner/puppet-azure_pipelines/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobHenner%2Fpuppet-azure_pipelines/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276864714,"owners_count":25718318,"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","status":"online","status_checked_at":"2025-09-25T02:00:09.612Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-devops","azure-pipelines","puppet","vsts","vsts-agent"],"created_at":"2025-01-16T05:15:10.446Z","updated_at":"2025-09-25T05:30:27.693Z","avatar_url":"https://github.com/JacobHenner.png","language":"Puppet","funding_links":[],"categories":[],"sub_categories":[],"readme":"# azure_pipelines\n\n#### Table of Contents\n\n1. [Description](#description)\n1. [Setup - The basics of getting started with azure_pipelines](#setup)\n    * [Setup requirements](#setup-requirements)\n    * [Beginning with azure_pipelines](#beginning-with-azure_pipelines)\n1. [Usage - Configuration options and additional functionality](#usage)\n1. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n1. [Limitations - OS compatibility, etc.](#limitations)\n1. [Development - Guide for contributing to the module](#development)\n\n## Description\n\nThis module manages the installation of agents for Microsoft's [Azure Pipelines](https://azure.microsoft.com/en-us/services/devops/pipelines/), previously called [Visual Studio Team Services (VSTS)](https://www.visualstudio.com/team-services/). Both standard agents and deployment group agents are supported.\n\nAt this time, only agent installation is handled. Configuration changes (e.g. adding a deployment group tag, removing an agent) are not supported.\n\nThis module was previously called vsts_agent, prior to the 1.0.0 release.\n\n## Setup\n\n### Setup Requirements\n\nAll dependencies for the agent must be installed prior to using this module.\n\nOn Windows, the System.IO.Compression.FileSystem .NET assembly must be available.\n\nIf you are unable to download packages from the internet (either directly or through a proxy), you will need a locally accessible copy of the agent.\n\n### Beginning with azure_pipelines\n\nTo install an instance of the agent with minimal configuration:\n\n```puppet\nazure_pipelines::agent { 'testagent':\n    install_path   =\u003e '/opt/azure_pipelines/testagent',\n    token          =\u003e 'pat-token',\n    instance_name  =\u003e 'instance-name',\n    service_user   =\u003e 'vsts',\n    service_group  =\u003e 'vsts',\n    run_as_service =\u003e true,\n}\n```\nTo force *.visualstudio.com URLs (if dev.azure.com URLs are blocked):\n\n```puppet\nazure_pipelines::agent { 'testagent':\n    install_path   =\u003e '/opt/vsts/testagent',\n    token          =\u003e 'pat-token',\n    instance_name  =\u003e 'instance-name',\n    service_user   =\u003e 'vsts',\n    service_group  =\u003e 'vsts',\n    run_as_service =\u003e true,\n    vsts           =\u003e true,\n}\n```\n\n## Usage\n\nAn example of basic configuration is provided above. \n\nThis module supports all of the parameters that can be passed to the VSTS agent's configuration script.\n\n## Reference\n\nPlease see the parameter documentation in [agent.pp](manifests/agent.pp) or generate documentation using `puppet strings`.\n\n## Limitations\n\nThis module has only been tested on Windows Server 2016, CentOS 7, and macOS Sierra.\n\nThis module does not yet support upgrading agents, or changing the configuration of existing agents.\n\nOn Windows, `install_path` must be specified using backslashes due to a limitation in the `dirtree` module.\n\nThere are currently no automated tests for this module.\n\n## Development\n\nContributions are encouraged! Please open a pull request for all proposed changes.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJacobHenner%2Fpuppet-azure_pipelines","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJacobHenner%2Fpuppet-azure_pipelines","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJacobHenner%2Fpuppet-azure_pipelines/lists"}