forked from jcorioland/terraform-azure-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
29 lines (27 loc) · 940 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This Azure Pipeline does nothing more than publishing each Terraform module artifacts
# in order to make them available for a release pipeline
trigger: none
stages:
- stage: Publish
displayName: Publish Terraform modules artifacts
jobs:
- job: Publish
displayName: Publish Terraform modules artifacts
pool:
name: Hosted Ubuntu 1604
steps:
- task: PublishPipelineArtifact@1
displayName: 'Publish Common Module as Pipeline Artifact'
inputs:
targetPath: tf/common
artifact: common
- task: PublishPipelineArtifact@1
displayName: 'Publish Core Module as Pipeline Artifact'
inputs:
targetPath: tf/core
artifact: core
- task: PublishPipelineArtifact@1
displayName: 'Publish AKS Module as Pipeline Artifact'
inputs:
targetPath: tf/aks
artifact: aks