@govuk-pay/cli 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/resources/legacy-ruby-cli/config/secrets.yml +81 -9
- package/resources/legacy-ruby-cli/config/service_secrets.yml +25 -9
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/config.yaml +3 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/all.yaml +760 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/card.yaml +508 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/custom.yaml +71 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/java.yaml +456 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/certs/publicapi-proxy.crt +18 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/keys/publicapi-proxy.key +28 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/toolbox.yaml +473 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local.rb +3 -2
- package/resources/legacy-ruby-cli/rds_access/connect.sh +30 -4
- package/resources/legacy-ruby-cli/vulnerability_scan/generate_vulnerability_report.js +52 -55
- package/resources/legacy-ruby-cli/vulnerability_scan/package.json +15 -0
- package/resources/legacy-ruby-cli/vulnerability_scan/scan.sh +56 -25
- package/resources/legacy-ruby-cli/vulnerability_scan/reports/.gitkeep +0 -0
|
@@ -0,0 +1,456 @@
|
|
|
1
|
+
version: '2.1'
|
|
2
|
+
|
|
3
|
+
services:
|
|
4
|
+
|
|
5
|
+
adminusers_db:
|
|
6
|
+
image: postgres:11.1
|
|
7
|
+
environment:
|
|
8
|
+
- POSTGRES_PASSWORD=mysecretpassword
|
|
9
|
+
mem_limit: 250M
|
|
10
|
+
logging:
|
|
11
|
+
driver: "json-file"
|
|
12
|
+
container_name: adminusers_db
|
|
13
|
+
volumes:
|
|
14
|
+
- ./postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
15
|
+
ports:
|
|
16
|
+
- "19700:5432"
|
|
17
|
+
|
|
18
|
+
connector_db:
|
|
19
|
+
image: postgres:11.1
|
|
20
|
+
environment:
|
|
21
|
+
- POSTGRES_PASSWORD=mysecretpassword
|
|
22
|
+
mem_limit: 250M
|
|
23
|
+
logging:
|
|
24
|
+
driver: "json-file"
|
|
25
|
+
container_name: connector_db
|
|
26
|
+
volumes:
|
|
27
|
+
- ./postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
28
|
+
ports:
|
|
29
|
+
- "19300:5432"
|
|
30
|
+
|
|
31
|
+
publicauth_db:
|
|
32
|
+
image: postgres:11.1
|
|
33
|
+
environment:
|
|
34
|
+
- POSTGRES_PASSWORD=mysecretpassword
|
|
35
|
+
mem_limit: 250M
|
|
36
|
+
logging:
|
|
37
|
+
driver: "json-file"
|
|
38
|
+
container_name: publicauth_db
|
|
39
|
+
volumes:
|
|
40
|
+
- ./postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
41
|
+
ports:
|
|
42
|
+
- "19600:5432"
|
|
43
|
+
|
|
44
|
+
products_db:
|
|
45
|
+
image: postgres:11.1
|
|
46
|
+
environment:
|
|
47
|
+
- POSTGRES_PASSWORD=mysecretpassword
|
|
48
|
+
mem_limit: 250M
|
|
49
|
+
logging:
|
|
50
|
+
driver: "json-file"
|
|
51
|
+
container_name: products_db
|
|
52
|
+
volumes:
|
|
53
|
+
- ./postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
54
|
+
ports:
|
|
55
|
+
- "19800:5432"
|
|
56
|
+
|
|
57
|
+
ledger_db:
|
|
58
|
+
image: postgres:11.1
|
|
59
|
+
environment:
|
|
60
|
+
- POSTGRES_PASSWORD=mysecretpassword
|
|
61
|
+
mem_limit: 250M
|
|
62
|
+
logging:
|
|
63
|
+
driver: "json-file"
|
|
64
|
+
container_name: ledger_db
|
|
65
|
+
volumes:
|
|
66
|
+
- ./postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
67
|
+
ports:
|
|
68
|
+
- "20700:5432"
|
|
69
|
+
|
|
70
|
+
webhooks_db:
|
|
71
|
+
image: postgres:11.1
|
|
72
|
+
environment:
|
|
73
|
+
- POSTGRES_PASSWORD=mysecretpassword
|
|
74
|
+
mem_limit: 250M
|
|
75
|
+
logging:
|
|
76
|
+
driver: "json-file"
|
|
77
|
+
container_name: webhooks_db
|
|
78
|
+
volumes:
|
|
79
|
+
- ./postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
80
|
+
ports:
|
|
81
|
+
- "20800:5432"
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
adminusers:
|
|
86
|
+
image: governmentdigitalservice/pay-adminusers:local
|
|
87
|
+
env_file:
|
|
88
|
+
- services/java_app.env
|
|
89
|
+
- services/adminusers.env
|
|
90
|
+
environment:
|
|
91
|
+
- RUN_MIGRATION=true
|
|
92
|
+
- RUN_APP=true
|
|
93
|
+
- PORT=9700
|
|
94
|
+
- DISABLE_INTERNAL_HTTPS=true
|
|
95
|
+
|
|
96
|
+
- DB_HOST=adminusers_db
|
|
97
|
+
- DB_USER=adminusers
|
|
98
|
+
- DB_PASSWORD=mysecretpassword
|
|
99
|
+
- DB_SSL_OPTION=ssl=none
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
- ADMINUSERS_URL=http://adminusers:9700
|
|
109
|
+
- CONNECTOR_URL=http://connector:9300
|
|
110
|
+
- CARDID_URL=http://cardid:9900
|
|
111
|
+
- PUBLICAUTH_URL=http://publicauth:9600
|
|
112
|
+
- PUBLICAPI_URL=http://publicapi:9100
|
|
113
|
+
- PRODUCTS_URL=http://products:18000
|
|
114
|
+
- LEDGER_URL=http://ledger:10700
|
|
115
|
+
- WEBHOOKS_URL=http://webhooks:10800
|
|
116
|
+
working_dir: '/app'
|
|
117
|
+
mem_limit: 2G
|
|
118
|
+
user: root
|
|
119
|
+
logging:
|
|
120
|
+
driver: "json-file"
|
|
121
|
+
ports:
|
|
122
|
+
- "9700:9700"
|
|
123
|
+
|
|
124
|
+
container_name: adminusers
|
|
125
|
+
|
|
126
|
+
connector:
|
|
127
|
+
image: governmentdigitalservice/pay-connector:local
|
|
128
|
+
env_file:
|
|
129
|
+
- services/java_app.env
|
|
130
|
+
- services/connector.env
|
|
131
|
+
environment:
|
|
132
|
+
- RUN_MIGRATION=true
|
|
133
|
+
- RUN_APP=true
|
|
134
|
+
- PORT=9300
|
|
135
|
+
- DISABLE_INTERNAL_HTTPS=true
|
|
136
|
+
|
|
137
|
+
- DB_HOST=connector_db
|
|
138
|
+
- DB_USER=connector
|
|
139
|
+
- DB_PASSWORD=mysecretpassword
|
|
140
|
+
- DB_SSL_OPTION=ssl=none
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
- AWS_ACCESS_KEY=mockAccessKey
|
|
145
|
+
- AWS_SECRET_ACCESS_KEY=mockSecretAccessKey
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
- AWS_SQS_REGION=eu-west-1
|
|
150
|
+
- AWS_SQS_MESSAGE_MAXIMUM_WAIT_TIME_IN_SECONDS=20
|
|
151
|
+
- AWS_SQS_NON_STANDARD_SERVICE_ENDPOINT=true
|
|
152
|
+
- AWS_SQS_ENDPOINT=http://localstack:4566
|
|
153
|
+
- AWS_SQS_CAPTURE_QUEUE_URL=http://localstack:4566/000000000000/pay_capture_queue
|
|
154
|
+
- AWS_SQS_PAYMENT_EVENT_QUEUE_URL=http://localstack:4566/000000000000/pay_event_queue
|
|
155
|
+
- AWS_SQS_PAYOUT_RECONCILE_QUEUE_URL=http://localstack:4566/000000000000/payout_reconcile_queue
|
|
156
|
+
- AWS_SQS_CONNECTOR_TASKS_QUEUE_URL=http://localstack:4566/000000000000/connector_tasks_queue
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
- ADMINUSERS_URL=http://adminusers:9700
|
|
162
|
+
- CONNECTOR_URL=http://connector:9300
|
|
163
|
+
- CARDID_URL=http://cardid:9900
|
|
164
|
+
- PUBLICAUTH_URL=http://publicauth:9600
|
|
165
|
+
- PUBLICAPI_URL=http://publicapi:9100
|
|
166
|
+
- PRODUCTS_URL=http://products:18000
|
|
167
|
+
- LEDGER_URL=http://ledger:10700
|
|
168
|
+
- WEBHOOKS_URL=http://webhooks:10800
|
|
169
|
+
working_dir: '/app'
|
|
170
|
+
mem_limit: 2G
|
|
171
|
+
user: root
|
|
172
|
+
logging:
|
|
173
|
+
driver: "json-file"
|
|
174
|
+
ports:
|
|
175
|
+
- "9300:9300"
|
|
176
|
+
- "9301:9301"
|
|
177
|
+
container_name: connector
|
|
178
|
+
|
|
179
|
+
cardid:
|
|
180
|
+
image: governmentdigitalservice/pay-cardid:local
|
|
181
|
+
env_file:
|
|
182
|
+
- services/java_app.env
|
|
183
|
+
- services/cardid.env
|
|
184
|
+
environment:
|
|
185
|
+
- RUN_MIGRATION=true
|
|
186
|
+
- RUN_APP=true
|
|
187
|
+
- PORT=9900
|
|
188
|
+
- DISABLE_INTERNAL_HTTPS=true
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
- ADMINUSERS_URL=http://adminusers:9700
|
|
198
|
+
- CONNECTOR_URL=http://connector:9300
|
|
199
|
+
- CARDID_URL=http://cardid:9900
|
|
200
|
+
- PUBLICAUTH_URL=http://publicauth:9600
|
|
201
|
+
- PUBLICAPI_URL=http://publicapi:9100
|
|
202
|
+
- PRODUCTS_URL=http://products:18000
|
|
203
|
+
- LEDGER_URL=http://ledger:10700
|
|
204
|
+
- WEBHOOKS_URL=http://webhooks:10800
|
|
205
|
+
working_dir: '/app'
|
|
206
|
+
mem_limit: 2G
|
|
207
|
+
user: root
|
|
208
|
+
logging:
|
|
209
|
+
driver: "json-file"
|
|
210
|
+
ports:
|
|
211
|
+
- "9900:9900"
|
|
212
|
+
|
|
213
|
+
container_name: cardid
|
|
214
|
+
|
|
215
|
+
publicauth:
|
|
216
|
+
image: governmentdigitalservice/pay-publicauth:local
|
|
217
|
+
env_file:
|
|
218
|
+
- services/java_app.env
|
|
219
|
+
- services/publicauth.env
|
|
220
|
+
environment:
|
|
221
|
+
- RUN_MIGRATION=true
|
|
222
|
+
- RUN_APP=true
|
|
223
|
+
- PORT=9600
|
|
224
|
+
- DISABLE_INTERNAL_HTTPS=true
|
|
225
|
+
|
|
226
|
+
- DB_HOST=publicauth_db
|
|
227
|
+
- DB_USER=publicauth
|
|
228
|
+
- DB_PASSWORD=mysecretpassword
|
|
229
|
+
- DB_SSL_OPTION=ssl=none
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
- ADMINUSERS_URL=http://adminusers:9700
|
|
239
|
+
- CONNECTOR_URL=http://connector:9300
|
|
240
|
+
- CARDID_URL=http://cardid:9900
|
|
241
|
+
- PUBLICAUTH_URL=http://publicauth:9600
|
|
242
|
+
- PUBLICAPI_URL=http://publicapi:9100
|
|
243
|
+
- PRODUCTS_URL=http://products:18000
|
|
244
|
+
- LEDGER_URL=http://ledger:10700
|
|
245
|
+
- WEBHOOKS_URL=http://webhooks:10800
|
|
246
|
+
working_dir: '/app'
|
|
247
|
+
mem_limit: 2G
|
|
248
|
+
user: root
|
|
249
|
+
logging:
|
|
250
|
+
driver: "json-file"
|
|
251
|
+
ports:
|
|
252
|
+
- "9600:9600"
|
|
253
|
+
|
|
254
|
+
container_name: publicauth
|
|
255
|
+
|
|
256
|
+
publicapi:
|
|
257
|
+
image: governmentdigitalservice/pay-publicapi:local
|
|
258
|
+
env_file:
|
|
259
|
+
- services/java_app.env
|
|
260
|
+
- services/publicapi.env
|
|
261
|
+
environment:
|
|
262
|
+
- RUN_MIGRATION=true
|
|
263
|
+
- RUN_APP=true
|
|
264
|
+
- PORT=9100
|
|
265
|
+
- DISABLE_INTERNAL_HTTPS=true
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
- ADMINUSERS_URL=http://adminusers:9700
|
|
275
|
+
- CONNECTOR_URL=http://connector:9300
|
|
276
|
+
- CARDID_URL=http://cardid:9900
|
|
277
|
+
- PUBLICAUTH_URL=http://publicauth:9600
|
|
278
|
+
- PUBLICAPI_URL=http://publicapi:9100
|
|
279
|
+
- PRODUCTS_URL=http://products:18000
|
|
280
|
+
- LEDGER_URL=http://ledger:10700
|
|
281
|
+
- WEBHOOKS_URL=http://webhooks:10800
|
|
282
|
+
working_dir: '/app'
|
|
283
|
+
mem_limit: 2G
|
|
284
|
+
user: root
|
|
285
|
+
logging:
|
|
286
|
+
driver: "json-file"
|
|
287
|
+
ports:
|
|
288
|
+
- "9100:9100"
|
|
289
|
+
|
|
290
|
+
container_name: publicapi
|
|
291
|
+
|
|
292
|
+
products:
|
|
293
|
+
image: governmentdigitalservice/pay-products:local
|
|
294
|
+
env_file:
|
|
295
|
+
- services/java_app.env
|
|
296
|
+
- services/products.env
|
|
297
|
+
environment:
|
|
298
|
+
- RUN_MIGRATION=true
|
|
299
|
+
- RUN_APP=true
|
|
300
|
+
- PORT=18000
|
|
301
|
+
- DISABLE_INTERNAL_HTTPS=true
|
|
302
|
+
|
|
303
|
+
- DB_HOST=products_db
|
|
304
|
+
- DB_USER=products
|
|
305
|
+
- DB_PASSWORD=mysecretpassword
|
|
306
|
+
- DB_SSL_OPTION=ssl=none
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
- ADMINUSERS_URL=http://adminusers:9700
|
|
316
|
+
- CONNECTOR_URL=http://connector:9300
|
|
317
|
+
- CARDID_URL=http://cardid:9900
|
|
318
|
+
- PUBLICAUTH_URL=http://publicauth:9600
|
|
319
|
+
- PUBLICAPI_URL=http://publicapi:9100
|
|
320
|
+
- PRODUCTS_URL=http://products:18000
|
|
321
|
+
- LEDGER_URL=http://ledger:10700
|
|
322
|
+
- WEBHOOKS_URL=http://webhooks:10800
|
|
323
|
+
working_dir: '/app'
|
|
324
|
+
mem_limit: 2G
|
|
325
|
+
user: root
|
|
326
|
+
logging:
|
|
327
|
+
driver: "json-file"
|
|
328
|
+
ports:
|
|
329
|
+
- "18000:18000"
|
|
330
|
+
|
|
331
|
+
container_name: products
|
|
332
|
+
|
|
333
|
+
ledger:
|
|
334
|
+
image: governmentdigitalservice/pay-ledger:local
|
|
335
|
+
env_file:
|
|
336
|
+
- services/java_app.env
|
|
337
|
+
- services/ledger.env
|
|
338
|
+
environment:
|
|
339
|
+
- RUN_MIGRATION=true
|
|
340
|
+
- RUN_APP=true
|
|
341
|
+
- PORT=10700
|
|
342
|
+
- DISABLE_INTERNAL_HTTPS=true
|
|
343
|
+
|
|
344
|
+
- DB_HOST=ledger_db
|
|
345
|
+
- DB_USER=ledger
|
|
346
|
+
- DB_PASSWORD=mysecretpassword
|
|
347
|
+
- DB_SSL_OPTION=ssl=none
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
- AWS_ACCESS_KEY=mockAccessKey
|
|
352
|
+
- AWS_SECRET_ACCESS_KEY=mockSecretAccessKey
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
- AWS_SQS_REGION=eu-west-1
|
|
357
|
+
- AWS_SQS_MESSAGE_MAXIMUM_WAIT_TIME_IN_SECONDS=20
|
|
358
|
+
- AWS_SQS_NON_STANDARD_SERVICE_ENDPOINT=true
|
|
359
|
+
- AWS_SQS_ENDPOINT=http://localstack:4566
|
|
360
|
+
- AWS_SQS_PAYMENT_EVENT_QUEUE_URL=http://localstack:4566/000000000000/pay_event_queue
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
- AWS_SNS_NON_STANDARD_SERVICE_ENDPOINT=true
|
|
365
|
+
- AWS_SNS_ENDPOINT=http://localstack:4566
|
|
366
|
+
- AWS_SNS_REGION=eu-west-1
|
|
367
|
+
- SNS_TOPIC_CARD_PAYMENT_EVENTS_ARN=arn:aws:sns:eu-west-1:000000000000:card-payment-events-topic
|
|
368
|
+
- SNS_TOPIC_CARD_PAYMENT_DISPUTE_EVENTS_ARN=arn:aws:sns:eu-west-1:000000000000:card-payment-dispute-events-topic
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
- ADMINUSERS_URL=http://adminusers:9700
|
|
372
|
+
- CONNECTOR_URL=http://connector:9300
|
|
373
|
+
- CARDID_URL=http://cardid:9900
|
|
374
|
+
- PUBLICAUTH_URL=http://publicauth:9600
|
|
375
|
+
- PUBLICAPI_URL=http://publicapi:9100
|
|
376
|
+
- PRODUCTS_URL=http://products:18000
|
|
377
|
+
- LEDGER_URL=http://ledger:10700
|
|
378
|
+
- WEBHOOKS_URL=http://webhooks:10800
|
|
379
|
+
- SNS_ENABLED=true
|
|
380
|
+
- PUBLISH_CARD_PAYMENT_EVENTS_TO_SNS=true
|
|
381
|
+
- PUBLISH_CARD_PAYMENT_DISPUTE_EVENTS_TO_SNS=true
|
|
382
|
+
working_dir: '/app'
|
|
383
|
+
mem_limit: 2G
|
|
384
|
+
user: root
|
|
385
|
+
logging:
|
|
386
|
+
driver: "json-file"
|
|
387
|
+
ports:
|
|
388
|
+
- "10700:10700"
|
|
389
|
+
|
|
390
|
+
container_name: ledger
|
|
391
|
+
|
|
392
|
+
webhooks:
|
|
393
|
+
image: governmentdigitalservice/pay-webhooks:local
|
|
394
|
+
env_file:
|
|
395
|
+
- services/java_app.env
|
|
396
|
+
- services/webhooks.env
|
|
397
|
+
environment:
|
|
398
|
+
- RUN_MIGRATION=true
|
|
399
|
+
- RUN_APP=true
|
|
400
|
+
- PORT=10800
|
|
401
|
+
- DISABLE_INTERNAL_HTTPS=true
|
|
402
|
+
|
|
403
|
+
- DB_HOST=webhooks_db
|
|
404
|
+
- DB_USER=webhooks
|
|
405
|
+
- DB_PASSWORD=mysecretpassword
|
|
406
|
+
- DB_SSL_OPTION=ssl=none
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
- AWS_ACCESS_KEY=mockAccessKey
|
|
411
|
+
- AWS_SECRET_ACCESS_KEY=mockSecretAccessKey
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
- AWS_SQS_REGION=eu-west-1
|
|
416
|
+
- AWS_SQS_MESSAGE_MAXIMUM_WAIT_TIME_IN_SECONDS=20
|
|
417
|
+
- AWS_SQS_NON_STANDARD_SERVICE_ENDPOINT=true
|
|
418
|
+
- AWS_SQS_ENDPOINT=http://localstack:4566
|
|
419
|
+
- AWS_SQS_PAYMENT_EVENT_QUEUE_URL=http://localstack:4566/000000000000/webhooks-events-subscriber-queue
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
- ADMINUSERS_URL=http://adminusers:9700
|
|
425
|
+
- CONNECTOR_URL=http://connector:9300
|
|
426
|
+
- CARDID_URL=http://cardid:9900
|
|
427
|
+
- PUBLICAUTH_URL=http://publicauth:9600
|
|
428
|
+
- PUBLICAPI_URL=http://publicapi:9100
|
|
429
|
+
- PRODUCTS_URL=http://products:18000
|
|
430
|
+
- LEDGER_URL=http://ledger:10700
|
|
431
|
+
- WEBHOOKS_URL=http://webhooks:10800
|
|
432
|
+
working_dir: '/app'
|
|
433
|
+
mem_limit: 2G
|
|
434
|
+
user: root
|
|
435
|
+
logging:
|
|
436
|
+
driver: "json-file"
|
|
437
|
+
ports:
|
|
438
|
+
- "10800:10800"
|
|
439
|
+
|
|
440
|
+
container_name: webhooks
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
localstack:
|
|
447
|
+
image: localstack/localstack:3
|
|
448
|
+
container_name: localstack
|
|
449
|
+
environment:
|
|
450
|
+
- EAGER_SERVICE_LOADING=1
|
|
451
|
+
- SERVICES=sns,sqs
|
|
452
|
+
ports:
|
|
453
|
+
- "4566:4566" # All AWS services exposed on this port
|
|
454
|
+
volumes:
|
|
455
|
+
- /Users/jonathan.harden/gitdevel/github.com/alphagov/pay-infra/cli/lib/pay_cli/commands/local/files/localstack/init-aws.sh:/etc/localstack/init/ready.d/init-aws.sh
|
|
456
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
MIIC9DCCAdwCCQDCic1s3YTXrjANBgkqhkiG9w0BAQsFADA8MRgwFgYDVQQDDA9w
|
|
3
|
+
dWJsaWNhcGktcHJveHkxEzARBgNVBAoMCkdPVi5VSyBQYXkxCzAJBgNVBAYTAkdC
|
|
4
|
+
MB4XDTI0MDMwNDE1MzA0OVoXDTI1MDMwNDE1MzA0OVowPDEYMBYGA1UEAwwPcHVi
|
|
5
|
+
bGljYXBpLXByb3h5MRMwEQYDVQQKDApHT1YuVUsgUGF5MQswCQYDVQQGEwJHQjCC
|
|
6
|
+
ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALN/gveplxRPaCWANwe2S9LD
|
|
7
|
+
ZAeFD0rQFFETt1IKHmk0qFn/4Gxdf5svMhrk6fV7HJW5v93bpz8fgFlwTeHh5FKN
|
|
8
|
+
6AeGzqhP16LrBNNIavuFwEU/LRER+FlMjNN66EHGrcPClF3c5eAmWarYdZYkpkCN
|
|
9
|
+
+Nh2TEAB/biJXb95YxJjg5NZUCJnS4LC0GYjS4Gu3dauIsQbJ0L4oYo9K/1FZfJc
|
|
10
|
+
7u5FTY5T9zRJPGVEMN/HFqe2PzgesP1dWs/HMlFMgtefcb/9ESkx+SzRwITkE9mq
|
|
11
|
+
MlNL5lpNC/joK30vKj6ZclRBwQ6EgtdzgrvnIAvP4gklZqqUuSCdYsqjzTc7uoUC
|
|
12
|
+
AwEAATANBgkqhkiG9w0BAQsFAAOCAQEAhzI5eFhRG+DYvtJVHtwm6YudpEJ/MT/P
|
|
13
|
+
jHhnymVLfTNrvkhZ+75VUTKXdhnZQWMBpH4ZV5ASktB+BeiMz/lKcA1tdAZvnZyB
|
|
14
|
+
6O9QLYKMEfU5fg5i7fdrAimv3rvj/KMgejUZrHobKaMWcPBRiIpKbxWI6+DFTHyc
|
|
15
|
+
hCcMdeC8rNT5Iz1WG2Uqo66otv83g6dyIrbq8cOZxXI9ocTQgTyfLSIWp72NBxk5
|
|
16
|
+
xxMzuyojVU678zb7oX3qCRTX4TlxMU/+o7QQ/oPwpHi9S/oDpeZBfepLf6nmwQJT
|
|
17
|
+
TGWlUWlb2gCJef8UtrJSDg9B4nZR83L7qutEberZJrkzBxbqXz6GfQ==
|
|
18
|
+
-----END CERTIFICATE-----
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
-----BEGIN PRIVATE KEY-----
|
|
2
|
+
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCzf4L3qZcUT2gl
|
|
3
|
+
gDcHtkvSw2QHhQ9K0BRRE7dSCh5pNKhZ/+BsXX+bLzIa5On1exyVub/d26c/H4BZ
|
|
4
|
+
cE3h4eRSjegHhs6oT9ei6wTTSGr7hcBFPy0REfhZTIzTeuhBxq3DwpRd3OXgJlmq
|
|
5
|
+
2HWWJKZAjfjYdkxAAf24iV2/eWMSY4OTWVAiZ0uCwtBmI0uBrt3WriLEGydC+KGK
|
|
6
|
+
PSv9RWXyXO7uRU2OU/c0STxlRDDfxxantj84HrD9XVrPxzJRTILXn3G//REpMfks
|
|
7
|
+
0cCE5BPZqjJTS+ZaTQv46Ct9Lyo+mXJUQcEOhILXc4K75yALz+IJJWaqlLkgnWLK
|
|
8
|
+
o803O7qFAgMBAAECggEAEEFY6/LIwscaKGM/GIyyuyiEs4WiR+UmId2GOYC/Fkn1
|
|
9
|
+
gQkCGu4wsy4H/JWEdn2qrgh/TqkosTe6GN9pvi4FzlAZlizoJCfu4EsmSbgCMDsB
|
|
10
|
+
mYPKIgSdmACttC0qQWKrs9G4O/PYQX9XmXg21d0FzUzOH1Q/PYCwqHiQK9njVfPU
|
|
11
|
+
SSuC5g7bJTTIpSzo64sX2AfmlVetRGJ9mdWfLZi/Q/PppBTjWth0ADHLb0e99cyM
|
|
12
|
+
da4LrCQSXqym8+LyTOU8rxRBzn8gjT7wyoIHBEujGsqLEFPkPKHiUTsvpjlIU2v3
|
|
13
|
+
7CY4fpsfxjX1JlGxmUhaJvZKLTnYY6v6kyytWmXo4QKBgQDejSKZ+IDrS792URFw
|
|
14
|
+
SoN6WrKzvDY1sxxdSFLTbjrAyIlz9XX+LrmHbwwa2cmDHSQyP1p3p4hVeLRkYFDu
|
|
15
|
+
qKX3VRCTSlXGCKMbLz7CK9tm5VNzh4H2pHXfZz0lt+235tHZtoD8JwzsVdCLANpn
|
|
16
|
+
7kTFTTpyswD8AJMIi7YvM5lJmQKBgQDOed1VxyI8q3pSXPM6Ij+7K5dsN3W3zY1r
|
|
17
|
+
G24pqaiQg+HRf7XBhHKseaJAxUVl4DRJHZXorwH/cCuhp2k60rnjGfX2zDnnV55v
|
|
18
|
+
2abE9ziUhawdF6nSAvV00DvUEAJ9kgp7aNJMAdajhLXuW9ERiHl+rX3ykId2Ue43
|
|
19
|
+
8p0FL/cDzQKBgGFsJRaD22OlYCYaLOkcJVwdchcOMCjnxGXtcByQJ3YXE1zIuiNQ
|
|
20
|
+
LvVjnkfuyLD1w8+fPiodE6he05ERPLyM5UJVYZEovE2ZoFUZJH75le0APLzZOAJR
|
|
21
|
+
Uiw+1Fy7nHuhtoF4zBQVwCmBE26WLAXNHxvDx+9H/wlR8wuNpW4aR2MZAoGBAJbO
|
|
22
|
+
ZX3wSy5a5KXho/kS6M+RYDC3NTDBXogbadPeSfL7kGUOzTcBwSv+TybVrwFgx2+b
|
|
23
|
+
v1FK+b+TMxsIBpDjNsgLvx26PpSc52i0ZN054EaCd5psHSn55UOjj/8sjlUe5K8M
|
|
24
|
+
eYTwVs/p72OgBkyzDGIc33/aVkZyQvb0KgGO7fEFAoGALKnWcnvDBDU++H+AD1RO
|
|
25
|
+
ECWk45FJ756dhZSZ/2E3/JUgTDQmddny2P/2vhK/MhitdyBi5yWUpjl4jn1Hl9nW
|
|
26
|
+
fJS4ExA7xgyzKhKXKD6lOen0CbXofHEm8JoC5Hj4nj2LocT/kerkdrbBw7DbPGtr
|
|
27
|
+
e3Z1chiiNRGt8+v43VKurXU=
|
|
28
|
+
-----END PRIVATE KEY-----
|