{"id":23090506,"url":"https://github.com/goodtocode/azure-devops","last_synced_at":"2025-07-11T01:06:01.918Z","repository":{"id":41244694,"uuid":"414677552","full_name":"goodtocode/azure-devops","owner":"goodtocode","description":"azure-devops Starter Azure DevOps Template is a starting point for using Azure DevOps pipeline YML files to automate cloud infrastructure, building source, unit-testing source, deploying source and running external integration tests.","archived":false,"fork":false,"pushed_at":"2025-01-28T23:19:59.000Z","size":277,"stargazers_count":10,"open_issues_count":0,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-06T16:47:45.723Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.goodtocode.com","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/goodtocode.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-07T16:29:07.000Z","updated_at":"2025-01-28T23:20:02.000Z","dependencies_parsed_at":"2023-01-31T20:16:04.799Z","dependency_job_id":"89b36a6c-523c-451c-a376-9c6899211f13","html_url":"https://github.com/goodtocode/azure-devops","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/goodtocode/azure-devops","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goodtocode%2Fazure-devops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goodtocode%2Fazure-devops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goodtocode%2Fazure-devops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goodtocode%2Fazure-devops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/goodtocode","download_url":"https://codeload.github.com/goodtocode/azure-devops/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goodtocode%2Fazure-devops/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264702822,"owners_count":23651834,"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":[],"created_at":"2024-12-16T21:00:15.950Z","updated_at":"2025-07-11T01:06:01.783Z","avatar_url":"https://github.com/goodtocode.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Azure DevOps Pipelines YAML for Azure Deployments\n\u003csup\u003eThis repo is a starting point for using Azure DevOps Pipelines YAML files to automate cloud infrastructure, building source, unit-testing source, deploying source and running external integration tests.\u003c/sup\u003e \u003cbr\u003e\n\nThis is a simple Azure DevOps YAML template for [Azure DevOps Pipelines](https://docs.microsoft.com/en-us/azure/devops//get-started/what-is-azure-pipelines?view=azure-devops)\n\nThis repository relates to the following activities:\n* Deploy [Enterprise-scale Architecture Landing Zones](https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/landing-zone/#:~:text=Azure%20landing%20zones%20are%20the%20output%20of%20a,as%20a%20service%20or%20platform%20as%20a%20service.)\n* Deploy Azure cloud infrastructure\n* Building source with dotnet build\n* Unit-testing source with dotnet tests\n* Deploying source to cloud infrastructure\n* And running external integration tests\n\n#### /pipelines folder (YAML)\nPath | Item | Contents\n--- | --- | ---\n/pipelines | - | Contains all scripts, steps, variables and main-pipeline files\n/pipelines | rg-PRODUCT-infrastructure.yml | Main-pipeline file to deploy cloud landing zone, and infrastructure\n/pipelines | rg-PRODUCT-src.yml | Main-pipeline file to build/test/deply src, unit tests and integration tests\n\n#### /steps folder (YAML)\nPath | Item | Contents\n--- | --- | ---\n/steps | - | Azure DevOps Pipelines step templates.\n/steps | func-build-steps.yml | Azure Functions source code build, and package\n/steps | func-deploy-steps.yml |  Azure Functions source code deploy to cloud infrastructure\n/steps | xxx-infrastructure-steps.yml | Azure ESA infrastructure deploy\n/steps | integration-test-steps.yml | Runs external integration tests against src\n/steps | logic-infrastructure-steps.yml | Azure Logic Apps deploy to cloud infrastructure\n/steps | landingzone-infrastructure-steps.yml | Azure ESA Landing Zone deploy\n/steps | nuget-deploy-external-steps.yml | NuGet.org package (.nupkg) deploy\n/steps | nuget-deploy-internal-steps.yml | Private NuGet Feed (.nupkg) deploy\n/steps | dotnet-build-steps.yml | Source code (/src) build with dotnet build\n/steps | dotnet-test-steps.yml |  Source code (/src) unit-test with dotnet test\n\n#### /pipeline/variables (YAML)\nPath | Item | Contents\n--- | --- | ---\n/variables | - | Variables (non-secret only) for the Azure landing zone, Azure infrastructure and NuGet packages.\n/variables | common.yml | Common variables to all pipelines\n/variables | development.yml | Development environment-specific variables\n/variables | production.yml | Production environment-specific variables\n\n#### /scripts folder (PowerShell)\nPath | Item | Contents\n--- | --- | ---\n/scripts | - | Contains Azure DevOps Pipelines YAML files, Windows PowerShell scripts, and variables to support Azure DevOps Pipelines YAML Pipelines.\n/scripts | System.psm1 | Powershell helpers for system-level functions\n/scripts | Set-Version.ps1 | Sets version per MAJOR.MINOR.REVISION.BUILD methodology\n/scripts | Get-AzureAd.ps1 | Manual script for getting Azure AD information\n/scripts | New-SelfSignedCert.ps1 | Manual script for generating a self-signed certificate\n\n#### Azure Services used in these repositories\nAzure Service | Purpose\n:---------------------:| --- \n[Azure Cosmos DB](https://azure.microsoft.com/en-us/services/cosmos-db/)| NoSQL database where original content as well as processing results are stored.\n[Azure Functions](https://azure.microsoft.com/en-us/try/app-service/)|Code blocks that analyze the documents stored in the Azure Cosmos DB.\n[Azure Service Bus](https://azure.microsoft.com/en-us/services/service-bus/)|Service bus queues are used as triggers for durable Azure Functions.\n[Azure Storage](https://azure.microsoft.com/en-us/services/storage/)|Holds images from articles and hosts the code for the Azure Functions.\n[Azure Logic App](https://azure.microsoft.com/en-us/services/logic-apps/)|Cloud workflow orchestrator, includes activities in the form of Connectors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoodtocode%2Fazure-devops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoodtocode%2Fazure-devops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoodtocode%2Fazure-devops/lists"}