├── README.md ├── dacpac ├── azure-pipelines-dacpac.yml ├── database-azure-deploy-job.yml └── database-build-job.yml ├── dotnet-core-console ├── azure-pipelines-dotnet-core-console.yml ├── dotnet-core-console-build.yml ├── dotnet-core-console-deploy.yml └── dotnet-core-console-test.yml ├── dotnet-core-web ├── azure-pipelines-dotnet-core-web-simple.yml ├── azure-pipelines-dotnet-core-web.yml ├── dotnet-core-build-simple-web-app.yml ├── dotnet-core-build.yml ├── dotnet-core-deploy-simple-web-app.yml └── dotnet-core-deploy.yml ├── ios ├── azure-pipelines-ios.yml ├── ios-build.yml └── ios-deploy.yml ├── java ├── azure-pipelines-java.yml └── gradle-build.yml ├── k8s ├── azure-pipelines-k8s.yml ├── job-k8s-build.yml ├── job-k8s-deploy-bake.yml ├── job-k8s-deploy-helm.yml ├── review-app-manifest-deploy_k8s-build.yml └── review-app-manifest-deploy_k8s-deploy.yml ├── pipeline-templates-presentation.pdf ├── secret-scanning ├── azure-pipelines-extends-template.yml ├── sample-build-job.yml ├── sample-build-steps.yml ├── sample-deployment-job.yml ├── secret-scanning-extends.yml └── secret-scanning-steps.yml └── terraform ├── azure-pipelines-terraform.yml ├── get-tf-credentials.steps.yml ├── terraform-apply-deployment.yml ├── terraform-destroy-deployment.yml └── terraform-plan-job.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/README.md -------------------------------------------------------------------------------- /dacpac/azure-pipelines-dacpac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dacpac/azure-pipelines-dacpac.yml -------------------------------------------------------------------------------- /dacpac/database-azure-deploy-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dacpac/database-azure-deploy-job.yml -------------------------------------------------------------------------------- /dacpac/database-build-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dacpac/database-build-job.yml -------------------------------------------------------------------------------- /dotnet-core-console/azure-pipelines-dotnet-core-console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-console/azure-pipelines-dotnet-core-console.yml -------------------------------------------------------------------------------- /dotnet-core-console/dotnet-core-console-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-console/dotnet-core-console-build.yml -------------------------------------------------------------------------------- /dotnet-core-console/dotnet-core-console-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-console/dotnet-core-console-deploy.yml -------------------------------------------------------------------------------- /dotnet-core-console/dotnet-core-console-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-console/dotnet-core-console-test.yml -------------------------------------------------------------------------------- /dotnet-core-web/azure-pipelines-dotnet-core-web-simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-web/azure-pipelines-dotnet-core-web-simple.yml -------------------------------------------------------------------------------- /dotnet-core-web/azure-pipelines-dotnet-core-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-web/azure-pipelines-dotnet-core-web.yml -------------------------------------------------------------------------------- /dotnet-core-web/dotnet-core-build-simple-web-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-web/dotnet-core-build-simple-web-app.yml -------------------------------------------------------------------------------- /dotnet-core-web/dotnet-core-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-web/dotnet-core-build.yml -------------------------------------------------------------------------------- /dotnet-core-web/dotnet-core-deploy-simple-web-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-web/dotnet-core-deploy-simple-web-app.yml -------------------------------------------------------------------------------- /dotnet-core-web/dotnet-core-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/dotnet-core-web/dotnet-core-deploy.yml -------------------------------------------------------------------------------- /ios/azure-pipelines-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/ios/azure-pipelines-ios.yml -------------------------------------------------------------------------------- /ios/ios-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/ios/ios-build.yml -------------------------------------------------------------------------------- /ios/ios-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/ios/ios-deploy.yml -------------------------------------------------------------------------------- /java/azure-pipelines-java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/java/azure-pipelines-java.yml -------------------------------------------------------------------------------- /java/gradle-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/java/gradle-build.yml -------------------------------------------------------------------------------- /k8s/azure-pipelines-k8s.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/k8s/azure-pipelines-k8s.yml -------------------------------------------------------------------------------- /k8s/job-k8s-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/k8s/job-k8s-build.yml -------------------------------------------------------------------------------- /k8s/job-k8s-deploy-bake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/k8s/job-k8s-deploy-bake.yml -------------------------------------------------------------------------------- /k8s/job-k8s-deploy-helm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/k8s/job-k8s-deploy-helm.yml -------------------------------------------------------------------------------- /k8s/review-app-manifest-deploy_k8s-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/k8s/review-app-manifest-deploy_k8s-build.yml -------------------------------------------------------------------------------- /k8s/review-app-manifest-deploy_k8s-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/k8s/review-app-manifest-deploy_k8s-deploy.yml -------------------------------------------------------------------------------- /pipeline-templates-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/pipeline-templates-presentation.pdf -------------------------------------------------------------------------------- /secret-scanning/azure-pipelines-extends-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/secret-scanning/azure-pipelines-extends-template.yml -------------------------------------------------------------------------------- /secret-scanning/sample-build-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/secret-scanning/sample-build-job.yml -------------------------------------------------------------------------------- /secret-scanning/sample-build-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/secret-scanning/sample-build-steps.yml -------------------------------------------------------------------------------- /secret-scanning/sample-deployment-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/secret-scanning/sample-deployment-job.yml -------------------------------------------------------------------------------- /secret-scanning/secret-scanning-extends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/secret-scanning/secret-scanning-extends.yml -------------------------------------------------------------------------------- /secret-scanning/secret-scanning-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/secret-scanning/secret-scanning-steps.yml -------------------------------------------------------------------------------- /terraform/azure-pipelines-terraform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/terraform/azure-pipelines-terraform.yml -------------------------------------------------------------------------------- /terraform/get-tf-credentials.steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/terraform/get-tf-credentials.steps.yml -------------------------------------------------------------------------------- /terraform/terraform-apply-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/terraform/terraform-apply-deployment.yml -------------------------------------------------------------------------------- /terraform/terraform-destroy-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/terraform/terraform-destroy-deployment.yml -------------------------------------------------------------------------------- /terraform/terraform-plan-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshjohanning/azure-devops-pipeline-templates/HEAD/terraform/terraform-plan-job.yml --------------------------------------------------------------------------------