-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-pipelines.yml
80 lines (77 loc) · 2.71 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
resources:
- repo: self
stages:
- stage: Validate
jobs:
- job: Validate
continueOnError: false
steps:
- publish: $(Build.SourcesDirectory)
artifact: terraform_out
- task : TerraformInstaller@0
displayName: 'Use Terraform v0.13.5'
inputs:
terraformVersion: 0.13.5
- task: TerraformTaskV1@0
displayName: 'terraform init'
inputs:
command: init
workingDirectory: $(Build.SourcesDirectory)
backendType: azurerm
backendServiceArm: $(SPN)
backendAzureRmResourceGroupName: $(azRSG)
backendAzureRmStorageAccountName: $(azStorageAccount)
backendAzureRmContainerName: $(azSAContainer)
backendAzureRmKey: $(backendKey)
- task: TerraformTaskV1@0
displayName: 'terraform validate'
inputs:
command: validate
workingDirectory: $(Build.SourcesDirectory)
- stage: Deploy
jobs:
# track deployments on the environment
- deployment: Deploy_Terraform
pool:
vmImage: 'ubuntu-latest'
# creates an environment if it doesn’t exist
environment: 'DEV'
strategy:
# default deployment strategy
runOnce:
deploy:
steps:
# - download: current
# artifact: terraform_out
- task: TerraformTaskV1@0
displayName: 'Terraform Init'
inputs:
command: init
workingDirectory: $(Pipeline.Workspace)/terraform_out
backendType: azurerm
backendServiceArm: $(SPN)
backendAzureRmResourceGroupName: $(azRSG)
backendAzureRmStorageAccountName: $(azStorageAccount)
backendAzureRmContainerName: $(azSAContainer)
backendAzureRmKey: $(backendKey)
- task: TerraformTaskV1@0
displayName: 'Terraform Plan'
inputs:
command: plan
workingDirectory: $(Pipeline.Workspace)/terraform_out
environmentServiceNameAzureRM: $(SPN)
secureVarsFile: $(securedFile)
# commandOptions: '-out $(Pipeline.Workspace)/terraform_out/terraform_aks_out'
terraformVersion: 0.13.5
- task: TerraformTaskV1@0
displayName: 'Terraform Apply'
inputs:
command: apply
workingDirectory: $(Pipeline.Workspace)/terraform_out
environmentServiceNameAzureRM: $(SPN)
# commandOptions: '$(Pipeline.Workspace)/terraform_out/terraform_aks_out'
terraformVersion: 0.13.5