View apim-workbook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "Notebook/1.0", | |
"items": [ | |
{ | |
"type": 9, | |
"content": { | |
"version": "KqlParameterItem/1.0", | |
"parameters": [ | |
{ | |
"id": "a6247561-499c-437d-8dec-204af2562446", |
View AzureFunction.V1.Deploy.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
- name: component | |
type: object | |
- name: environment | |
type: object | |
steps: | |
- task: replacetokens@3 | |
name: ReplaceVariables |
View AzureFunction.V1.Build.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
- name: component | |
type: object | |
steps: | |
- task: DotNetCoreCLI@2 | |
displayName: Build Azure Function | |
inputs: | |
command: 'build' |
View Template.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
- name: config | |
type: object | |
- name: buildVariableGroups | |
type: object | |
default: [] | |
- name: components | |
type: object | |
default: [] | |
- name: deployVariableGroups |
View Solution.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
- name: config | |
type: object | |
extends: | |
template: /Pipelines/Template.v1/Template.yml | |
parameters: | |
config: ${{parameters.config}} | |
components: |
View CI.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: $(Build.DefinitionName)-$(Build.BuildId) | |
pool: | |
vmImage: windows-latest | |
trigger: | |
branches: | |
include: | |
- main | |
- feature/* |
View CD.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
- name: environment | |
displayName: Specific Environment | |
type: string | |
default: All | |
values: | |
- All | |
- Dev | |
- Tst | |
- UAT |