generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
296 lines (276 loc) · 11.9 KB
/
oracle-db-password-rotation.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
name: "Oracle: Password Rotation"
run-name: "Oracle: ${{ github.event.inputs.TargetEnvironment }}-password-rotation"
on:
workflow_dispatch:
inputs:
TargetEnvironment:
description: "Target environment"
required: true
type: choice
options:
- "hmpps-oem-development"
- "hmpps-oem-test"
- "hmpps-oem-preproduction"
- "hmpps-oem-production"
- "delius-core-dev"
- "delius-core-test"
- "delius-core-training"
- "delius-core-stage"
- "delius-core-pre-prod"
- "delius-core-prod"
VerboseOutput:
description: "Verbose Output level"
type: choice
default: ""
options:
- ""
- "-vv"
- "-vvv"
- "-vvvv"
AnsibleForks:
description: "Number of Ansible Forks to Use"
type: choice
default: ""
options:
- ""
- "-f 5"
- "-f 10"
- "-f 15"
SourceCodeVersion:
description: "Source version for the hmpps-delius-operation-automation. Enter a pull request, branch, commit ID, tag, or reference."
type: string
default: "main"
SourceConfigVersion:
description: "Source version for the modernisation-platform-configuration-management. Enter a pull request, branch, commit ID, tag, or reference."
type: string
default: "main"
env:
ansible_config: operations/playbooks/ansible.cfg
database_command: ansible-playbook operations/playbooks/oracle_password_rotation/database_password_rotation.yml
oem_command: ansible-playbook operations/playbooks/oracle_password_rotation/oem_password_rotation.yml
inventory: inventory/ansible
# Allow permissions on repository and docker image and OIDC token
permissions:
contents: read
packages: read
id-token: write
jobs:
oracle_password_rotation:
name: oracle-password-rotation
environment: ${{ github.event.inputs.TargetEnvironment }}
runs-on: ubuntu-latest
container:
image: ghcr.io/ministryofjustice/hmpps-delius-operational-automation:0.1
timeout-minutes: 1440
continue-on-error: false
outputs:
TargetOemEnvironment: ${{ steps.definetargets.outputs.TargetOemEnvironment }}
TargetEnvironmentName: ${{ steps.definetargets.outputs.TargetEnvironmentName }}
RotateGroups: ${{ steps.definetargets.outputs.targets }}
steps:
- name: Checkout Ansible Playbooks and Roles From hmpps-delius-operation-automation
uses: actions/checkout@v4
with:
sparse-checkout-cone-mode: false
sparse-checkout: |
playbooks/oracle_password_rotation
playbooks/oem_blackout
playbooks/oracle_ha
playbooks/alfresco_wallet
playbooks/ansible.cfg
path: operations
ref: ${{ github.event.inputs.SourceCodeVersion }}
fetch-depth: 0
- name: Checkout Ansible Inventory From modernisation-platform-configuration-management
uses: actions/checkout@v4
with:
repository: ministryofjustice/modernisation-platform-configuration-management
sparse-checkout-cone-mode: false
sparse-checkout: |
ansible/hosts
ansible/group_vars
path: inventory
ref: ${{ github.event.inputs.SourceConfigVersion }}
fetch-depth: 0
- name: Checkout Ansible Required Roles From modernisation-platform-configuration-management
uses: actions/checkout@v4
with:
repository: ministryofjustice/modernisation-platform-configuration-management
sparse-checkout-cone-mode: false
sparse-checkout: |
ansible/roles/secretsmanager-passwords
ansible/roles/get-modernisation-platform-facts
path: roles
ref: ${{ github.event.inputs.SourceConfigVersion }}
fetch-depth: 0
- name: Define Targets
id: definetargets
working-directory: ${{ env.inventory }}
run: |
targets=""
prefix="environment_name_$(echo ${{ github.event.inputs.TargetEnvironment}} | sed 's/delius-core-dev/delius_core_development_dev/;s/delius-core-test/delius_core_test_test/;s/delius-core-training/delius_core_test_training/;s/delius-core-stage/delius_core_preproduction_stage/;s/delius-core-pre-prod/delius_core_preproduction_pre_prod/;s/delius-core-prod/delius_core_production_prod/;s/-/_/g')"
build_targets() {
databasetype=${1}
if [[ -e group_vars/${prefix}_${databasetype}_primarydb.yml ]]
then
targets="${targets}${prefix}_${databasetype}_dbs,"
elif [[ "${databasetype}" == "oem" ]]
then
targets="${prefix}"
fi
echo
}
build_targets delius
build_targets mis
build_targets misboe
build_targets misdsd
build_targets oem
echo "targets=$targets"
echo "targets=$targets" >> $GITHUB_OUTPUT
case ${{ github.event.inputs.TargetEnvironment }} in
delius-core-dev)
TargetOemEnvironment=hmpps-oem-development
TargetEnvironmentName=delius-core-development
;;
delius-core-test|delius-core-training)
TargetOemEnvironment=hmpps-oem-test
TargetEnvironmentName=delius-core-test
;;
delius-core-stage|delius-core-pre-prod)
TargetOemEnvironment=hmpps-oem-preproduction
TargetEnvironmentName=delius-core-preproduction
;;
delius-core-prod)
TargetOemEnvironment=hmpps-oem-production
TargetEnvironmentName=delius-core-production
;;
*oem*)
TargetOemEnvironment=${{ github.event.inputs.TargetEnvironment }}
TargetEnvironmentName=${{ github.event.inputs.TargetEnvironment }}
;;
esac
echo "TargetOemEnvironment=${TargetOemEnvironment}" >> $GITHUB_OUTPUT
echo "TargetEnvironmentName=${TargetEnvironmentName}" >> $GITHUB_OUTPUT
- name: Configure AWS Credentials
id: login-aws
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: "arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/modernisation-platform-oidc-cicd"
role-session-name: "hmpps-delius-operational-automation-${{ github.run_number }}"
aws-region: "eu-west-2"
- name: Start Ansible Database Password Rotation
shell: bash
run: |
export ANSIBLE_CONFIG=$ansible_config
ln -s $PWD/roles/ansible/roles $PWD/operations/playbooks/oracle_password_rotation/roles
$database_command -i $inventory \
-e rotate_groups=${{ steps.definetargets.outputs.targets }} \
-e environment_name=${{ github.event.inputs.TargetEnvironment }} ${{ github.event.inputs.VerboseOutput }} ${{ github.event.inputs.AnsibleForks }}
oracle_update_oem_targets:
name: oracle-update-oem-targets
needs: oracle_password_rotation
environment: ${{ needs.oracle_password_rotation.outputs.TargetOEMEnvironment }}
runs-on: ubuntu-latest
container:
image: ghcr.io/ministryofjustice/hmpps-delius-operational-automation:0.1
timeout-minutes: 1440
continue-on-error: false
steps:
- name: Checkout Ansible Playbooks and Roles From hmpps-delius-operation-automation
uses: actions/checkout@v4
with:
sparse-checkout-cone-mode: false
sparse-checkout: |
playbooks/oracle_password_rotation
playbooks/ansible.cfg
path: operations
ref: ${{ github.event.inputs.SourceCodeVersion }}
fetch-depth: 0
- name: Checkout Ansible Inventory From modernisation-platform-configuration-management
uses: actions/checkout@v4
with:
repository: ministryofjustice/modernisation-platform-configuration-management
sparse-checkout-cone-mode: false
sparse-checkout: |
ansible/hosts
ansible/group_vars
path: inventory
ref: ${{ github.event.inputs.SourceConfigVersion }}
fetch-depth: 0
- name: Checkout Ansible Required Roles From modernisation-platform-configuration-management
uses: actions/checkout@v4
with:
repository: ministryofjustice/modernisation-platform-configuration-management
sparse-checkout-cone-mode: false
sparse-checkout: |
ansible/roles/secretsmanager-passwords
ansible/roles/get-modernisation-platform-facts
path: roles
ref: ${{ github.event.inputs.SourceConfigVersion }}
fetch-depth: 0
- name: Configure AWS Credentials
id: login-aws
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: "arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/modernisation-platform-oidc-cicd"
role-session-name: "hmpps-delius-operational-automation-${{ github.run_number }}"
aws-region: "eu-west-2"
- name: Start Ansible Update OEM Targets
shell: bash
run: |
export ANSIBLE_CONFIG=$ansible_config
ln -s $PWD/roles/ansible/roles $PWD/operations/playbooks/oracle_password_rotation/roles
$oem_command -i $inventory \
-e oem_target=environment_name_$(echo ${{ needs.oracle_password_rotation.outputs.TargetOemEnvironment }} | sed 's/-/_/g') \
-e environment_name=${{ needs.oracle_password_rotation.outputs.TargetOemEnvironment }} \
-e target_environment_name=${{ needs.oracle_password_rotation.outputs.TargetEnvironmentName }} \
-e sync_monitoring_passwords=yes \
-e sync_audit_wallet_password=no \
-e rotate_rman_password=no \
-e rotate_oem_passwords=no ${{ github.event.inputs.VerboseOutput }}
oracle_unlock_system_users:
name: oracle-unlock-system-users
needs: [oracle_password_rotation, oracle_update_oem_targets]
environment: ${{ github.event.inputs.TargetEnvironment }}
runs-on: ubuntu-latest
container:
image: ghcr.io/ministryofjustice/hmpps-delius-operational-automation:0.1
timeout-minutes: 1440
continue-on-error: false
steps:
- name: Checkout Ansible Playbooks and Roles From hmpps-delius-operation-automation
uses: actions/checkout@v4
with:
sparse-checkout-cone-mode: false
sparse-checkout: |
playbooks/oracle_password_rotation
playbooks/ansible.cfg
path: operations
ref: ${{ github.event.inputs.SourceCodeVersion }}
fetch-depth: 0
- name: Checkout Ansible Inventory From modernisation-platform-configuration-management
uses: actions/checkout@v4
with:
repository: ministryofjustice/modernisation-platform-configuration-management
sparse-checkout-cone-mode: false
sparse-checkout: |
ansible/hosts
ansible/group_vars
path: inventory
ref: ${{ github.event.inputs.SourceConfigVersion }}
fetch-depth: 0
- name: Configure AWS Credentials
id: login-aws
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: "arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/modernisation-platform-oidc-cicd"
role-session-name: "hmpps-delius-operational-automation-${{ github.run_number }}"
aws-region: "eu-west-2"
- name: Start Ansible Unlock System Users
shell: bash
run: |
export ANSIBLE_CONFIG=$ansible_config
$database_command -i $inventory \
-e rotate_groups=${{ needs.oracle_password_rotation.outputs.RotateGroups }} \
-e environment_name=${{ github.event.inputs.TargetEnvironment }} \
-e unlock_system_passwords=yes ${{ github.event.inputs.VerboseOutput }} ${{ github.event.inputs.AnsibleForks }}