-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-infrastructure-QA.yml
157 lines (142 loc) · 5.56 KB
/
azure-pipelines-infrastructure-QA.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
name: $(Major).$(Minor).$(Patch)
variables:
- group: TerraformGlobalValues
- name: Major
value: 1
- name: Minor
value: 0
- name: Patch
value: $[counter(format('{0}.{1}', variables['Major'], variables['Minor']), 0)]
- name: ClientName
value: CLIENT # 6 Characters Maximum - Due to NetBios Naming Restrictions
- name: SupplierName
value: Supplier
- name: Environment
value: QA
resources:
- repo: self
trigger:
branches:
include:
- master
paths:
include:
- Azure/*
- azure-pipelines-infrastructure-QA.yml
stages:
- stage: Build
displayName: Build
jobs:
- job: Build
displayName: Build Infrastructure as Code
pool:
name: LocalTest
workspace:
clean: all
steps:
- task: TerraformInstaller@0
displayName: 'Install Terraform 0.12.18'
inputs:
terraformVersion: 0.12.18
- task: replacetokens@3
displayName: 'Replace secret tokens in terraform files'
inputs:
rootDirectory: Azure/env/QA
actionOnMissing: 'fail'
targetFiles: |
*.tfvars
*.tf
env:
backend_state_resource_group_name: $(backend_state_resource_group_name)
backend_state_storage_account_name: $(backend_state_storage_account_name)
backend_state_container_name: $(backend_state_container_name)
backend_state_key: $(backend_state_key)
subscription_id: $(subscription_id)
client_id: $(client_id)
client_secret: $(client_secret)
tenant_id: $(tenant_id)
SupplierName: $(SupplierName)
ClientName: $(ClientName)
Public_RDP_Allowed_IP_Addresses: $(Public_RDP_Allowed_IP_Addresses) #{Public_RDP_Allowed_IP_Addresses}# # Example ["1.1.1.1","2.2.2.2"]
- task: TerraformTaskV1@0
displayName: 'Terraform : Init'
inputs:
workingDirectory: Azure/env/QA
backendServiceArm: '#Azure DevOps Service Connection to Azure Sub#'
backendAzureRmResourceGroupName: DevOps
backendAzureRmStorageAccountName: devops
backendAzureRmContainerName: 'terraform-state'
backendAzureRmKey: tf/$(ClientName)/$(Environment)/terraform.tfstate
- task: TerraformTaskV1@0
displayName: 'Terraform : Validate'
inputs:
command: validate
workingDirectory: Azure/env/QA
commandOptions: '-var-file=".\qa.tfvars"`'
backendServiceArm: '#Azure DevOps Service Connection to Azure Sub#'
backendAzureRmResourceGroupName: DevOps
backendAzureRmStorageAccountName: devops
backendAzureRmContainerName: 'terraform-state'
backendAzureRmKey: tf/$(ClientName)/$(Environment)/terraform.tfstate
- powershell: |
Remove-Item $(Build.SourcesDirectory)\Azure\env\QA\.terraform -Recurse -Force
Copy-Item $(Build.SourcesDirectory)\* $(Build.ArtifactStagingDirectory)\ -Recurse
displayName: 'Copy Terraform Config Files to Artifacts Directory'
- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(Build.ArtifactStagingDirectory)\'
artifact: TerraformPackage
- stage: Deploy
dependsOn: Build
jobs:
- deployment: Deploy
displayName: Deploy Infrastructure as Code
pool:
name: LocalTest
environment: QA
strategy:
runOnce:
deploy:
steps:
- task: TerraformInstaller@0
displayName: 'Install Terraform 0.12.18'
inputs:
terraformVersion: 0.12.18
- task: TerraformTaskV1@0
displayName: 'Terraform : Init'
inputs:
workingDirectory: $(Pipeline.Workspace)\TerraformPackage\Azure\env\QA
backendServiceArm: '#Azure DevOps Service Connection to Azure Sub#'
backendAzureRmResourceGroupName: DevOps
backendAzureRmStorageAccountName: devops
backendAzureRmContainerName: 'terraform-state'
backendAzureRmKey: tf/$(ClientName)/$(Environment)/terraform.tfstate
- task: replacetokens@3
displayName: 'Replace secret tokens in **/*.ps1'
inputs:
rootDirectory: $(Pipeline.Workspace)\TerraformPackage\Azure\modules\files
targetFiles: '**/*.ps1'
env:
AD_User_Password: $(AD_User_Password) # Maps the secret variable $(token)
AD_Support_User_Password: $(AD_Support_User_Password)
AD_SqlServerAgentService_Password: $(AD_SqlServerAgentService_Password)
AD_SqlServerService_Password: $(AD_SqlServerService_Password)
AD_Svc_Api_LIVE_Password: $(AD_Svc_Api_LIVE_Password)
AD_Svc_Api_UAT_Password: $(AD_Svc_Api_UAT_Password)
AD_Svc_Api_PREPROD_Password: $(AD_Svc_Api_PREPROD_Password)
AD_Svc_Api_STAGING_Password: $(AD_Svc_Api_STAGING_Password)
SupplierName: $(SupplierName)
- task: TerraformTaskV1@0
displayName: 'Terraform : Plan'
inputs:
command: plan
workingDirectory: $(Pipeline.Workspace)\TerraformPackage\Azure\env\QA
commandOptions: '-lock=false -var-file=".\qa.tfvars"'
environmentServiceNameAzureRM: '#Azure DevOps Service Connection to Azure Sub#'
- task: TerraformTaskV1@0
displayName: 'Terraform : Apply'
inputs:
command: apply
workingDirectory: $(Pipeline.Workspace)\TerraformPackage\Azure\env\QA
commandOptions: '-lock=false -var-file=".\qa.tfvars" -auto-approve'
environmentServiceNameAzureRM: '#Azure DevOps Service Connection to Azure Sub#'