@govuk-pay/cli 0.0.3 → 0.0.5
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/.rspec +1 -0
- package/resources/legacy-ruby-cli/.rubocop.yml +26 -0
- package/resources/legacy-ruby-cli/.ruby-version +1 -0
- package/resources/legacy-ruby-cli/Gemfile +24 -0
- package/resources/legacy-ruby-cli/Gemfile.lock +1431 -0
- package/resources/legacy-ruby-cli/README.md +143 -0
- package/resources/legacy-ruby-cli/bin/pay +31 -0
- package/resources/legacy-ruby-cli/config/generate-secrets.yml +9 -0
- package/resources/legacy-ruby-cli/config/secrets.yml +581 -0
- package/resources/legacy-ruby-cli/config/service_secrets.yml +174 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/aws/document.rb +23 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/aws/services.rb +47 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/aws/tokens.rb +161 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/aws.rb +51 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/browse.rb +31 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/doctor.rb +154 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/app_client.rb +216 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/config.rb +138 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/config.yaml +192 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/docker.rb +36 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/docker-compose.erb +270 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/end-to-end.erb +30 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/localstack/init-aws.sh +70 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/naxsi/readme.md +1 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/postgres/docker-entrypoint-initdb.d/make_payments_databases.sql +26 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/adminusers.env +49 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/cardid.env +2 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/connector.env +70 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/demo-service.env +10 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/frontend.env +12 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/java_app.env +1 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ledger.env +7 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/products-ui.env +14 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/products.env +25 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/publicapi.env +13 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/publicauth.env +13 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/selfservice.env +21 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/certs/frontend-proxy.crt +18 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/certs/products-ui-proxy.crt +20 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/certs/selfservice-proxy.crt +20 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/certs/stubs-proxy.crt +18 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/keys/frontend-proxy.key +28 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/keys/products-ui-proxy.key +28 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/keys/selfservice-proxy.key +28 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/keys/stubs-proxy.key +28 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/ssl/make-selfsigned.sh +2 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/stubs.env +12 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/toolbox.env +5 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/files/services/webhooks.env +9 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local/image_extractor.rb +20 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/local.rb +430 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/schema.rb +36 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/secrets.rb +114 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/ssm.rb +111 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/tf.rb +90 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/commands/tunnel/services.yml +49 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/config.rb +27 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/ec2.rb +38 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/entry_point.rb +52 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/environment.rb +25 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/logger.rb +3 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/logs.rb +248 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/naming.rb +44 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/secrets.rb +276 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/stop_yubico_authenticator.rb +10 -0
- package/resources/legacy-ruby-cli/lib/pay_cli/ykman_oath_credential_config.rb +70 -0
- package/resources/legacy-ruby-cli/lib/zeitwerk_setup.rb +5 -0
- package/resources/legacy-ruby-cli/package-lock.json +6 -0
- package/resources/legacy-ruby-cli/rds_access/connect.sh +149 -0
- package/resources/legacy-ruby-cli/spec/.rubocop.yml +2 -0
- package/resources/legacy-ruby-cli/spec/fixtures/dockerfile_examples/Dockerfile.complex +34 -0
- package/resources/legacy-ruby-cli/spec/fixtures/dockerfile_examples/Dockerfile.complex_differing_froms +33 -0
- package/resources/legacy-ruby-cli/spec/fixtures/dockerfile_examples/Dockerfile.no_from +3 -0
- package/resources/legacy-ruby-cli/spec/fixtures/dockerfile_examples/Dockerfile.simple +5 -0
- package/resources/legacy-ruby-cli/spec/fixtures/dockerfile_examples/Dockerfile.simple_no_tag +5 -0
- package/resources/legacy-ruby-cli/spec/fixtures/dockerfile_examples/Dockerfile.with_sha +5 -0
- package/resources/legacy-ruby-cli/spec/fixtures/dockerfile_examples/Dockerfile.with_sha_no_tag +5 -0
- package/resources/legacy-ruby-cli/spec/lib/pay_cli/commands/local/image_extractor_spec.rb +55 -0
- package/resources/legacy-ruby-cli/spec/naming_spec.rb +83 -0
- package/resources/legacy-ruby-cli/spec/spec_helper.rb +106 -0
- package/resources/legacy-ruby-cli/vulnerability_scan/.nvmrc +1 -0
- package/resources/legacy-ruby-cli/vulnerability_scan/generate_vulnerability_report.js +91 -0
- package/resources/legacy-ruby-cli/vulnerability_scan/reports/.gitkeep +0 -0
- package/resources/legacy-ruby-cli/vulnerability_scan/scan.sh +57 -0
- package/src/commands/browse.js +2 -2
- package/src/commands/legacy.js +3 -2
- package/src/core/constants.js +7 -10
- package/src/util/payCliExec.js +18 -1
|
@@ -0,0 +1,581 @@
|
|
|
1
|
+
---
|
|
2
|
+
# secrets here will be looked up from pay-dev-pass
|
|
3
|
+
# pay-dev-pass[env][service][secretname] = pay-dev-pass path
|
|
4
|
+
pay-dev-pass:
|
|
5
|
+
deploy:
|
|
6
|
+
cd-pay-deploy:
|
|
7
|
+
pact-broker-password: pact/pact_broker_password
|
|
8
|
+
pact-broker-username: pact/pact_broker_username
|
|
9
|
+
pact-broker/pact-broker-password: pact/pact_broker_password
|
|
10
|
+
pact-broker/pact-broker-username: pact/pact_broker_username
|
|
11
|
+
cd-pay-dev:
|
|
12
|
+
pact-broker-password: pact/pact_broker_password
|
|
13
|
+
pact-broker-username: pact/pact_broker_username
|
|
14
|
+
pr-ci/pact-broker-username: pact/pact_broker_username
|
|
15
|
+
pr-ci/pact-broker-password: pact/pact_broker_password
|
|
16
|
+
pact-broker-auth:
|
|
17
|
+
pact-broker-basic-auth-password: pact/pact_broker_password
|
|
18
|
+
pact-broker-basic-auth-username: pact/pact_broker_username
|
|
19
|
+
test-12:
|
|
20
|
+
connector:
|
|
21
|
+
SANDBOX_AUTH_TOKEN: notifications/test/sandbox_auth_token
|
|
22
|
+
test-perf-1:
|
|
23
|
+
connector:
|
|
24
|
+
SANDBOX_AUTH_TOKEN: notifications/test/sandbox_auth_token
|
|
25
|
+
staging-2:
|
|
26
|
+
connector:
|
|
27
|
+
SANDBOX_AUTH_TOKEN: notifications/staging/sandbox_auth_token
|
|
28
|
+
production-2:
|
|
29
|
+
connector:
|
|
30
|
+
SANDBOX_AUTH_TOKEN: notifications/production/sandbox_auth_token
|
|
31
|
+
frontend:
|
|
32
|
+
GOOGLE_PAY_MERCHANT_ID: google_pay/merchant_identifier
|
|
33
|
+
GOOGLE_PAY_MERCHANT_ID_2: google_pay/merchant_identifier_2
|
|
34
|
+
# secrets here will be looked up from pay-low-pass
|
|
35
|
+
# pay-low-pass[env][service][secretname] = pay-low-pass path
|
|
36
|
+
pay-low-pass:
|
|
37
|
+
deploy:
|
|
38
|
+
alb_and_s3_logging_pipeline:
|
|
39
|
+
firehose_hec_token: splunk/firehose-hec-token
|
|
40
|
+
amazon-managed-prometheus:
|
|
41
|
+
pager_duty_cloudwatch_integration_url_in_hours_only: pager-duty/govuk-pay-in-hours-only/amazon-cloudwatch-integration-url
|
|
42
|
+
pager_duty_cloudwatch_integration_url_24_7_p1: pager-duty/govuk-pay/amazon-cloudwatch-integration-url
|
|
43
|
+
cd-pay-deploy:
|
|
44
|
+
docker-email: dockerhub/concourse-email
|
|
45
|
+
docker-username: dockerhub/concourse-username
|
|
46
|
+
docker-password: dockerhub/concourse-password
|
|
47
|
+
docker-access-token: dockerhub/concourse-access-token
|
|
48
|
+
end-to-end/docker-email: dockerhub/concourse-email
|
|
49
|
+
end-to-end/docker-password: dockerhub/concourse-password
|
|
50
|
+
end-to-end/docker-username: dockerhub/concourse-username
|
|
51
|
+
end-to-end/docker-access-token: dockerhub/concourse-access-token
|
|
52
|
+
github-access-token: alphagov-pay-ci-concourse/github.com-concourse-github-personal-access-token
|
|
53
|
+
slack-notification-secret: slack/notification-secret
|
|
54
|
+
cd-pay-dev:
|
|
55
|
+
docker-email: dockerhub/concourse-email
|
|
56
|
+
docker-username: dockerhub/concourse-username
|
|
57
|
+
docker-password: dockerhub/concourse-password
|
|
58
|
+
docker-access-token: dockerhub/concourse-access-token
|
|
59
|
+
github-access-token: alphagov-pay-ci-concourse/github.com-concourse-github-personal-access-token
|
|
60
|
+
pay-js-commons/github-access-token: alphagov-pay-ci-concourse/github.com-concourse-github-personal-access-token
|
|
61
|
+
pr-ci/github-access-token: alphagov-pay-ci-concourse/github.com-concourse-github-personal-access-token
|
|
62
|
+
slack-notification-secret: slack/notification-secret
|
|
63
|
+
smartpay-expected-password: pay-stubs/smartpay/expected-password
|
|
64
|
+
smartpay-expected-user: pay-stubs/smartpay/expected-user
|
|
65
|
+
worldpay-expected-password: pay-stubs/worldpay/expected-password
|
|
66
|
+
worldpay-expected-user: pay-stubs/worldpay/expected-user
|
|
67
|
+
cd-main:
|
|
68
|
+
docker-email: dockerhub/concourse-email
|
|
69
|
+
docker-username: dockerhub/concourse-username
|
|
70
|
+
docker-password: dockerhub/concourse-password
|
|
71
|
+
docker-access-token: dockerhub/concourse-access-token
|
|
72
|
+
slack-notification-secret: slack/notification-secret
|
|
73
|
+
deploy-7:
|
|
74
|
+
deploy:
|
|
75
|
+
PAGER_DUTY_CLOUDWATCH_INTEGRATION_URL: pager-duty/govuk-pay/amazon-cloudwatch-integration-url
|
|
76
|
+
PAGER_DUTY_CLOUDWATCH_INTEGRATION_URL_STAGING: pager-duty/govuk-pay-staging-smoke-tests/amazon-cloudwatch-integration-url
|
|
77
|
+
deploy-tooling:
|
|
78
|
+
pact-broker:
|
|
79
|
+
master_db_user: aws/rds/superuser/deploy-tooling/pact-broker/username
|
|
80
|
+
master_db_password: aws/rds/superuser/deploy-tooling/pact-broker/password # pragma: allowlist secret
|
|
81
|
+
db_user: aws/rds/application_users/deploy/pact_broker_db_username
|
|
82
|
+
db_password: aws/rds/application_users/deploy/pact_broker_db_password # pragma: allowlist secret
|
|
83
|
+
stubs:
|
|
84
|
+
smartpay-expected-password: pay-stubs/smartpay/expected-password
|
|
85
|
+
smartpay-expected-user: pay-stubs/smartpay/expected-user
|
|
86
|
+
worldpay-expected-password: pay-stubs/worldpay/expected-password
|
|
87
|
+
worldpay-expected-user: pay-stubs/worldpay/expected-user
|
|
88
|
+
test-12:
|
|
89
|
+
adminusers:
|
|
90
|
+
DB_PASSWORD: aws/rds/application_users/test/adminusers1
|
|
91
|
+
NOTIFY_API_KEY: notify/api_key/ci/test.adminusers.notify_api_key
|
|
92
|
+
SENTRY_DSN: sentry_io/adminusers_dsn
|
|
93
|
+
cardid:
|
|
94
|
+
SENTRY_DSN: sentry_io/cardid_dsn
|
|
95
|
+
connector:
|
|
96
|
+
DB_PASSWORD: aws/rds/application_users/test/connector2
|
|
97
|
+
NOTIFY_API_KEY: notify/api_key/ci/test.connector.notify_api_key
|
|
98
|
+
GDS_CONNECTOR_STRIPE_AUTH_TOKEN: stripe/test/test/account-api-key
|
|
99
|
+
GDS_CONNECTOR_STRIPE_AUTH_LIVE_TOKEN: stripe/test/test/account-api-key
|
|
100
|
+
GDS_CONNECTOR_STRIPE_WEBHOOK_SIGN_SECRET: stripe/test/test/webhook-secret
|
|
101
|
+
GDS_CONNECTOR_STRIPE_WEBHOOK_LIVE_SIGN_SECRET: stripe/test/test/webhook-secret
|
|
102
|
+
GDS_CONNECTOR_STRIPE_CONNECT_APPLICATION_WEBHOOK_LIVE_SIGN_SECRET: stripe/test/test/webhook-connect-events-secret
|
|
103
|
+
GDS_CONNECTOR_STRIPE_CONNECT_APPLICATION_WEBHOOK_TEST_SIGN_SECRET: stripe/test/test/webhook-connect-events-secret
|
|
104
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE: apple_pay/worldpay/test/payment-processing-certificate-20230906
|
|
105
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_PRIVATE_KEY: apple_pay/worldpay/test/payment-processing-private-key-20230906 # pragma: allowlist secret
|
|
106
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE_SECONDARY: apple_pay/worldpay/test/payment-processing-certificate-20230906
|
|
107
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_PRIVATE_KEY_SECONDARY: apple_pay/worldpay/test/payment-processing-private-key-20230906 # pragma: allowlist secret
|
|
108
|
+
SENTRY_DSN: sentry_io/connector_dsn
|
|
109
|
+
failwhale:
|
|
110
|
+
google-analytics-id: google-analytics/failwhale/test/google-analytics-id
|
|
111
|
+
frontend:
|
|
112
|
+
SESSION_ENCRYPTION_KEY: ""
|
|
113
|
+
SESSION_ENCRYPTION_KEY_2: ""
|
|
114
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID: apple_pay/worldpay/test/merchant-id
|
|
115
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID_CERTIFICATE: apple_pay/worldpay/test/merchant-id-certificate-20230905
|
|
116
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID_CERTIFICATE_KEY: apple_pay/worldpay/test/merchant-id-certificate-key-20230905
|
|
117
|
+
STRIPE_APPLE_PAY_MERCHANT_ID: apple_pay/stripe/test/merchant-id
|
|
118
|
+
STRIPE_APPLE_PAY_MERCHANT_ID_CERTIFICATE: apple_pay/stripe/test/merchant-id-certificate-20230823
|
|
119
|
+
STRIPE_APPLE_PAY_MERCHANT_ID_CERTIFICATE_KEY: apple_pay/stripe/test/merchant-id-certificate-key-20230823
|
|
120
|
+
STRIPE_TEST_PUBLISHABLE_API_KEY: stripe/test/test/publishable-api-key
|
|
121
|
+
STRIPE_LIVE_PUBLISHABLE_API_KEY: stripe/test/test/publishable-api-key
|
|
122
|
+
SENTRY_DSN: sentry/frontend_dsn
|
|
123
|
+
SENTRY_CSP_REPORT_URI: sentry/frontend_csp_report_uri
|
|
124
|
+
ledger:
|
|
125
|
+
DB_PASSWORD: aws/rds/application_users/test/ledger
|
|
126
|
+
SENTRY_DSN: sentry_io/ledger_dsn
|
|
127
|
+
webhooks:
|
|
128
|
+
DB_PASSWORD: aws/rds/application_users/test/webhooks # pragma: allowlist secret
|
|
129
|
+
SENTRY_DSN: sentry_io/webhooks_dsn
|
|
130
|
+
product-page:
|
|
131
|
+
pager_duty_cloudwatch_integration_url: pager-duty/govuk-pay-product-page/amazon-cloudwatch-integration-url
|
|
132
|
+
publicapi:
|
|
133
|
+
TOKEN_API_HMAC_SECRET: ""
|
|
134
|
+
SENTRY_DSN: sentry_io/publicapi_dsn
|
|
135
|
+
publicauth:
|
|
136
|
+
DB_USER: ""
|
|
137
|
+
DB_PASSWORD: ""
|
|
138
|
+
TOKEN_DB_BCRYPT_SALT: ""
|
|
139
|
+
TOKEN_API_HMAC_SECRET: ""
|
|
140
|
+
SENTRY_DSN: sentry_io/publicauth_dsn
|
|
141
|
+
products:
|
|
142
|
+
DB_USER: ""
|
|
143
|
+
DB_PASSWORD: ""
|
|
144
|
+
SENTRY_DSN: sentry_io/products_dsn
|
|
145
|
+
products-ui:
|
|
146
|
+
SESSION_ENCRYPTION_KEY: ""
|
|
147
|
+
SENTRY_DSN: sentry_io/products_ui_dsn
|
|
148
|
+
GOOGLE_RECAPTCHA_SECRET_KEY: google/test/captcha-secret-key
|
|
149
|
+
GOOGLE_RECAPTCHA_SITE_KEY: google/test/captcha-site-key
|
|
150
|
+
selfservice:
|
|
151
|
+
SESSION_ENCRYPTION_KEY: ""
|
|
152
|
+
ZENDESK_API_KEY: zendesk/api_key
|
|
153
|
+
ZENDESK_USER: zendesk/user
|
|
154
|
+
STRIPE_ACCOUNT_API_KEY: stripe/test/test/account-api-key
|
|
155
|
+
SENTRY_DSN: sentry/selfservice_dsn
|
|
156
|
+
terraform:
|
|
157
|
+
ADMINUSERS_RDS_PASSWORD: aws/rds/superuser/test-12/adminusers/payment-password
|
|
158
|
+
CONNECTOR_RDS_PASSWORD: aws/rds/superuser/test-12/connector/payment-password
|
|
159
|
+
LEDGER_RDS_PASSWORD: aws/rds/superuser/test-12/ledger/payment-password
|
|
160
|
+
PRODUCTS_RDS_PASSWORD: aws/rds/superuser/test-12/products/payment-password
|
|
161
|
+
PUBLICAUTH_RDS_PASSWORD: aws/rds/superuser/test-12/publicauth/payment-password
|
|
162
|
+
ADMINUSERS_APP_RDS_PASSWORD: aws/rds/application_users/test/adminusers
|
|
163
|
+
CONNECTOR_APP_RDS_PASSWORD: aws/rds/application_users/test/connector2
|
|
164
|
+
LEDGER_APP_RDS_PASSWORD: aws/rds/application_users/test/ledger
|
|
165
|
+
WEBHOOKS_APP_RDS_PASSWORD: aws/rds/application_users/test/webhooks # pragma: allowlist secret
|
|
166
|
+
PRODUCTS_APP_RDS_PASSWORD: aws/rds/application_users/test/products
|
|
167
|
+
PUBLICAUTH_APP_RDS_PASSWORD: aws/rds/application_users/test/publicauth
|
|
168
|
+
toolbox:
|
|
169
|
+
AUTH_GITHUB_CLIENT_ID: pay-toolbox/test/github_client_id
|
|
170
|
+
AUTH_GITHUB_CLIENT_SECRET: pay-toolbox/test/github_client_secret
|
|
171
|
+
STRIPE_ACCOUNT_API_KEY: stripe/test/test/account-api-key
|
|
172
|
+
STRIPE_ACCOUNT_TEST_API_KEY: stripe/test/test/account-api-key
|
|
173
|
+
SENTRY_DSN: sentry/toolbox_dsn
|
|
174
|
+
ZENDESK_USER: zendesk/user
|
|
175
|
+
ZENDESK_API_KEY: zendesk/api_key
|
|
176
|
+
test-perf-1:
|
|
177
|
+
adminusers:
|
|
178
|
+
DB_PASSWORD: aws/rds/application_users/test/adminusers
|
|
179
|
+
NOTIFY_API_KEY: notify/api_key/ci/test.adminusers.notify_api_key
|
|
180
|
+
SENTRY_DSN: sentry_io/adminusers_dsn
|
|
181
|
+
cardid:
|
|
182
|
+
SENTRY_DSN: sentry_io/cardid_dsn
|
|
183
|
+
connector:
|
|
184
|
+
DB_PASSWORD: aws/rds/superuser/test-12/connector/payment-password
|
|
185
|
+
NOTIFY_API_KEY: notify/api_key/ci/test.connector.notify_api_key
|
|
186
|
+
GDS_CONNECTOR_STRIPE_AUTH_TOKEN: stripe/test/test/account-api-key
|
|
187
|
+
GDS_CONNECTOR_STRIPE_AUTH_LIVE_TOKEN: stripe/test/test/account-api-key
|
|
188
|
+
GDS_CONNECTOR_STRIPE_WEBHOOK_SIGN_SECRET: stripe/test/test/webhook-secret
|
|
189
|
+
GDS_CONNECTOR_STRIPE_WEBHOOK_LIVE_SIGN_SECRET: stripe/test/test/webhook-secret
|
|
190
|
+
GDS_CONNECTOR_STRIPE_CONNECT_APPLICATION_WEBHOOK_LIVE_SIGN_SECRET: stripe/test/test/webhook-connect-events-secret
|
|
191
|
+
GDS_CONNECTOR_STRIPE_CONNECT_APPLICATION_WEBHOOK_TEST_SIGN_SECRET: stripe/test/test/webhook-connect-events-secret
|
|
192
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE: apple_pay/worldpay/test/payment-processing-certificate-20230906
|
|
193
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_PRIVATE_KEY: apple_pay/worldpay/test/payment-processing-private-key-20230906 # pragma: allowlist secret
|
|
194
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE_SECONDARY: apple_pay/worldpay/test/payment-processing-certificate-20230906
|
|
195
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_PRIVATE_KEY_SECONDARY: apple_pay/worldpay/test/payment-processing-private-key-20230906 # pragma: allowlist secret
|
|
196
|
+
SENTRY_DSN: sentry_io/connector_dsn
|
|
197
|
+
frontend:
|
|
198
|
+
SESSION_ENCRYPTION_KEY: ""
|
|
199
|
+
SESSION_ENCRYPTION_KEY_2: ""
|
|
200
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID: apple_pay/worldpay/test/merchant-id
|
|
201
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID_CERTIFICATE: apple_pay/worldpay/test/merchant-id-certificate-20230905
|
|
202
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID_CERTIFICATE_KEY: apple_pay/worldpay/test/merchant-id-certificate-key-20230905
|
|
203
|
+
STRIPE_APPLE_PAY_MERCHANT_ID: apple_pay/stripe/test/merchant-id
|
|
204
|
+
STRIPE_APPLE_PAY_MERCHANT_ID_CERTIFICATE: apple_pay/stripe/test/merchant-id-certificate-20230823
|
|
205
|
+
STRIPE_APPLE_PAY_MERCHANT_ID_CERTIFICATE_KEY: apple_pay/stripe/test/merchant-id-certificate-key-20230823
|
|
206
|
+
STRIPE_TEST_PUBLISHABLE_API_KEY: stripe/test/test/publishable-api-key
|
|
207
|
+
STRIPE_LIVE_PUBLISHABLE_API_KEY: stripe/test/test/publishable-api-key
|
|
208
|
+
SENTRY_DSN: sentry/frontend_dsn
|
|
209
|
+
SENTRY_CSP_REPORT_URI: sentry/frontend_csp_report_uri
|
|
210
|
+
ledger:
|
|
211
|
+
DB_PASSWORD: aws/rds/application_users/test/ledger
|
|
212
|
+
SENTRY_DSN: sentry_io/ledger_dsn
|
|
213
|
+
publicapi:
|
|
214
|
+
TOKEN_API_HMAC_SECRET: ""
|
|
215
|
+
SENTRY_DSN: sentry_io/publicapi_dsn
|
|
216
|
+
publicauth:
|
|
217
|
+
DB_USER: ""
|
|
218
|
+
DB_PASSWORD: ""
|
|
219
|
+
TOKEN_DB_BCRYPT_SALT: ""
|
|
220
|
+
TOKEN_API_HMAC_SECRET: ""
|
|
221
|
+
SENTRY_DSN: sentry_io/publicauth_dsn
|
|
222
|
+
products:
|
|
223
|
+
DB_USER: ""
|
|
224
|
+
DB_PASSWORD: ""
|
|
225
|
+
SENTRY_DSN: sentry_io/products_dsn
|
|
226
|
+
products-ui:
|
|
227
|
+
SESSION_ENCRYPTION_KEY: ""
|
|
228
|
+
SENTRY_DSN: sentry_io/products_ui_dsn
|
|
229
|
+
GOOGLE_RECAPTCHA_SECRET_KEY: google/test/captcha-secret-key
|
|
230
|
+
GOOGLE_RECAPTCHA_SITE_KEY: google/test/captcha-site-key
|
|
231
|
+
selfservice:
|
|
232
|
+
SESSION_ENCRYPTION_KEY: ""
|
|
233
|
+
ZENDESK_API_KEY: zendesk/api_key
|
|
234
|
+
ZENDESK_USER: zendesk/user
|
|
235
|
+
STRIPE_ACCOUNT_API_KEY: stripe/test/test/account-api-key
|
|
236
|
+
SENTRY_DSN: sentry/selfservice_dsn
|
|
237
|
+
terraform:
|
|
238
|
+
ADMINUSERS_RDS_PASSWORD: aws/rds/superuser/test-12/adminusers/payment-password
|
|
239
|
+
CONNECTOR_RDS_PASSWORD: aws/rds/superuser/test-12/connector/payment-password
|
|
240
|
+
LEDGER_RDS_PASSWORD: aws/rds/superuser/test-12/ledger/payment-password
|
|
241
|
+
PRODUCTS_RDS_PASSWORD: aws/rds/superuser/test-12/products/payment-password
|
|
242
|
+
PUBLICAUTH_RDS_PASSWORD: aws/rds/superuser/test-12/publicauth/payment-password
|
|
243
|
+
ADMINUSERS_APP_RDS_PASSWORD: aws/rds/application_users/test/adminusers
|
|
244
|
+
CONNECTOR_APP_RDS_PASSWORD: aws/rds/application_users/test/connector2
|
|
245
|
+
LEDGER_APP_RDS_PASSWORD: aws/rds/application_users/test/ledger
|
|
246
|
+
PRODUCTS_APP_RDS_PASSWORD: aws/rds/application_users/test/products
|
|
247
|
+
PUBLICAUTH_APP_RDS_PASSWORD: aws/rds/application_users/test/publicauth
|
|
248
|
+
toolbox:
|
|
249
|
+
AUTH_GITHUB_CLIENT_ID: pay-toolbox/test/github_client_id
|
|
250
|
+
AUTH_GITHUB_CLIENT_SECRET: pay-toolbox/test/github_client_secret
|
|
251
|
+
STRIPE_ACCOUNT_API_KEY: stripe/test/test/account-api-key
|
|
252
|
+
STRIPE_ACCOUNT_TEST_API_KEY: stripe/test/test/account-api-key
|
|
253
|
+
SENTRY_DSN: sentry/toolbox_dsn
|
|
254
|
+
ZENDESK_API_KEY: zendesk/api_key
|
|
255
|
+
ZENDESK_USER: zendesk/user
|
|
256
|
+
webhooks:
|
|
257
|
+
DB_PASSWORD: aws/rds/application_users/test/webhooks # pragma: allowlist secret
|
|
258
|
+
SENTRY_DSN: sentry_io/webhooks_dsn
|
|
259
|
+
test:
|
|
260
|
+
alb_and_s3_logging_pipeline:
|
|
261
|
+
firehose_hec_token: splunk/firehose-hec-token
|
|
262
|
+
codebuild:
|
|
263
|
+
docker-username: dockerhub/concourse-username
|
|
264
|
+
docker-access-token: dockerhub/concourse-access-token
|
|
265
|
+
github-access-token: alphagov-pay-ci-concourse/github.com-concourse-github-personal-access-token
|
|
266
|
+
dev:
|
|
267
|
+
alb_and_s3_logging_pipeline:
|
|
268
|
+
firehose_hec_token: splunk/firehose-hec-token
|
|
269
|
+
codebuild:
|
|
270
|
+
docker-username: dockerhub/concourse-username
|
|
271
|
+
docker-access-token: dockerhub/concourse-access-token
|
|
272
|
+
github-access-token: alphagov-pay-ci-concourse/github.com-concourse-github-personal-access-token
|
|
273
|
+
ci:
|
|
274
|
+
alb_and_s3_logging_pipeline:
|
|
275
|
+
firehose_hec_token: splunk/firehose-hec-token
|
|
276
|
+
staging-2:
|
|
277
|
+
adminusers:
|
|
278
|
+
DB_PASSWORD: aws/rds/application_users/staging/adminusers1
|
|
279
|
+
NOTIFY_API_KEY: notify/api_key/deploy/staging.adminusers.notify_api_key
|
|
280
|
+
SENTRY_DSN: sentry_io/adminusers_dsn
|
|
281
|
+
cardid:
|
|
282
|
+
SENTRY_DSN: sentry_io/cardid_dsn
|
|
283
|
+
connector:
|
|
284
|
+
DB_PASSWORD: aws/rds/application_users/staging/connector1
|
|
285
|
+
NOTIFY_API_KEY: notify/api_key/deploy/staging.connector.notify_api_key
|
|
286
|
+
GDS_CONNECTOR_STRIPE_AUTH_TOKEN: stripe/staging/test/account-api-key
|
|
287
|
+
GDS_CONNECTOR_STRIPE_AUTH_LIVE_TOKEN: stripe/staging/test/account-api-key
|
|
288
|
+
GDS_CONNECTOR_STRIPE_WEBHOOK_SIGN_SECRET: stripe/staging/test/webhook-secret
|
|
289
|
+
GDS_CONNECTOR_STRIPE_WEBHOOK_LIVE_SIGN_SECRET: stripe/staging/test/webhook-secret
|
|
290
|
+
GDS_CONNECTOR_STRIPE_CONNECT_APPLICATION_WEBHOOK_LIVE_SIGN_SECRET: stripe/staging/test/webhook-connect-events-secret
|
|
291
|
+
GDS_CONNECTOR_STRIPE_CONNECT_APPLICATION_WEBHOOK_TEST_SIGN_SECRET: stripe/staging/test/webhook-connect-events-secret
|
|
292
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE: apple_pay/worldpay/test/payment-processing-certificate-20230906
|
|
293
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_PRIVATE_KEY: apple_pay/worldpay/test/payment-processing-private-key-20230906 # pragma: allowlist secret
|
|
294
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE_SECONDARY: apple_pay/worldpay/test/payment-processing-certificate-20230906
|
|
295
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_PRIVATE_KEY_SECONDARY: apple_pay/worldpay/test/payment-processing-private-key-20230906 # pragma: allowlist secret
|
|
296
|
+
SENTRY_DSN: sentry_io/connector_dsn
|
|
297
|
+
failwhale:
|
|
298
|
+
google-analytics-id: google-analytics/failwhale/staging/google-analytics-id
|
|
299
|
+
frontend:
|
|
300
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID: apple_pay/worldpay/test/merchant-id
|
|
301
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID_CERTIFICATE: apple_pay/worldpay/test/merchant-id-certificate-20230905
|
|
302
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID_CERTIFICATE_KEY: apple_pay/worldpay/test/merchant-id-certificate-key-20230905
|
|
303
|
+
STRIPE_APPLE_PAY_MERCHANT_ID: apple_pay/stripe/staging/merchant-id
|
|
304
|
+
STRIPE_APPLE_PAY_MERCHANT_ID_CERTIFICATE: apple_pay/stripe/staging/merchant-id-certificate-20230823
|
|
305
|
+
STRIPE_APPLE_PAY_MERCHANT_ID_CERTIFICATE_KEY: apple_pay/stripe/staging/merchant-id-certificate-key-20230823
|
|
306
|
+
STRIPE_TEST_PUBLISHABLE_API_KEY: stripe/staging/test/publishable-api-key
|
|
307
|
+
STRIPE_LIVE_PUBLISHABLE_API_KEY: stripe/staging/test/publishable-api-key
|
|
308
|
+
SENTRY_DSN: sentry/frontend_dsn
|
|
309
|
+
SENTRY_CSP_REPORT_URI: sentry/frontend_csp_report_uri
|
|
310
|
+
ledger:
|
|
311
|
+
DB_PASSWORD: aws/rds/application_users/staging/ledger
|
|
312
|
+
SENTRY_DSN: sentry_io/ledger_dsn
|
|
313
|
+
products:
|
|
314
|
+
SENTRY_DSN: sentry_io/products_dsn
|
|
315
|
+
products-ui:
|
|
316
|
+
SENTRY_DSN: sentry_io/products_ui_dsn
|
|
317
|
+
GOOGLE_RECAPTCHA_SECRET_KEY: google/test/captcha-secret-key
|
|
318
|
+
GOOGLE_RECAPTCHA_SITE_KEY: google/test/captcha-site-key
|
|
319
|
+
publicapi:
|
|
320
|
+
SENTRY_DSN: sentry_io/publicapi_dsn
|
|
321
|
+
TOKEN_API_HMAC_SECRET: ""
|
|
322
|
+
publicauth:
|
|
323
|
+
SENTRY_DSN: sentry_io/publicauth_dsn
|
|
324
|
+
product-page:
|
|
325
|
+
pager_duty_cloudwatch_integration_url: pager-duty/govuk-pay-product-page/amazon-cloudwatch-integration-url
|
|
326
|
+
terraform:
|
|
327
|
+
ADMINUSERS_RDS_PASSWORD: aws/rds/superuser/staging-2/adminusers/payment-password
|
|
328
|
+
CONNECTOR_RDS_PASSWORD: aws/rds/superuser/staging-2/connector/payment-password
|
|
329
|
+
LEDGER_RDS_PASSWORD: aws/rds/superuser/staging-2/ledger/payment-password
|
|
330
|
+
PRODUCTS_RDS_PASSWORD: aws/rds/superuser/staging-2/products/payment-password
|
|
331
|
+
PUBLICAUTH_RDS_PASSWORD: aws/rds/superuser/staging-2/publicauth/payment-password
|
|
332
|
+
WEBHOOKS_RDS_PASSWORD: aws/rds/superuser/staging-2/webhooks/payment-password # pragma: allowlist secret
|
|
333
|
+
ADMINUSERS_APP_RDS_PASSWORD: aws/rds/application_users/staging/adminusers
|
|
334
|
+
CONNECTOR_APP_RDS_PASSWORD: aws/rds/application_users/staging/connector1
|
|
335
|
+
LEDGER_APP_RDS_PASSWORD: aws/rds/application_users/staging/ledger
|
|
336
|
+
PRODUCTS_APP_RDS_PASSWORD: aws/rds/application_users/staging/products
|
|
337
|
+
PUBLICAUTH_APP_RDS_PASSWORD: aws/rds/application_users/staging/publicauth
|
|
338
|
+
WEBHOOKS_APP_RDS_PASSWORD: aws/rds/application_users/staging/webhooks # pragma: allowlist secret
|
|
339
|
+
selfservice:
|
|
340
|
+
ZENDESK_API_KEY: zendesk/api_key
|
|
341
|
+
ZENDESK_USER: zendesk/user
|
|
342
|
+
STRIPE_ACCOUNT_API_KEY: stripe/staging/test/account-api-key
|
|
343
|
+
SENTRY_DSN: sentry/selfservice_dsn
|
|
344
|
+
toolbox:
|
|
345
|
+
AUTH_GITHUB_CLIENT_ID: pay-toolbox/staging/github_client_id
|
|
346
|
+
AUTH_GITHUB_CLIENT_SECRET: pay-toolbox/staging/github_client_secret
|
|
347
|
+
STRIPE_ACCOUNT_API_KEY: stripe/staging/test/account-api-key
|
|
348
|
+
STRIPE_ACCOUNT_TEST_API_KEY: stripe/staging/test/account-api-key
|
|
349
|
+
SENTRY_DSN: sentry/toolbox_dsn
|
|
350
|
+
ZENDESK_API_KEY: zendesk/api_key
|
|
351
|
+
ZENDESK_USER: zendesk/user
|
|
352
|
+
webhooks:
|
|
353
|
+
DB_PASSWORD: aws/rds/application_users/staging/webhooks # pragma: allowlist secret
|
|
354
|
+
SENTRY_DSN: sentry_io/webhooks_dsn
|
|
355
|
+
webhooks_intrusion_monitoring:
|
|
356
|
+
pager_duty_cloudwatch_integration_url: pager-duty/govuk-pay-staging-webhooks/amazon-cloudwatch-integration-url
|
|
357
|
+
staging:
|
|
358
|
+
alb_and_s3_logging_pipeline:
|
|
359
|
+
firehose_hec_token: splunk/firehose-hec-token
|
|
360
|
+
production-2:
|
|
361
|
+
adminusers:
|
|
362
|
+
DB_PASSWORD: aws/rds/application_users/production/adminusers1
|
|
363
|
+
NOTIFY_API_KEY: notify/api_key/deploy/production.adminusers.notify_api_key
|
|
364
|
+
SENTRY_DSN: sentry_io/adminusers_dsn
|
|
365
|
+
cardid:
|
|
366
|
+
SENTRY_DSN: sentry_io/cardid_dsn
|
|
367
|
+
connector:
|
|
368
|
+
DB_PASSWORD: aws/rds/application_users/production/connector2
|
|
369
|
+
NOTIFY_API_KEY: notify/api_key/deploy/production.connector.notify_api_key
|
|
370
|
+
GDS_CONNECTOR_STRIPE_AUTH_TOKEN: stripe/production/test/account-api-key
|
|
371
|
+
GDS_CONNECTOR_STRIPE_AUTH_LIVE_TOKEN: stripe/production/live/account-api-key
|
|
372
|
+
GDS_CONNECTOR_STRIPE_WEBHOOK_SIGN_SECRET: stripe/production/test/webhook-secret
|
|
373
|
+
GDS_CONNECTOR_STRIPE_WEBHOOK_LIVE_SIGN_SECRET: stripe/production/live/webhook-secret
|
|
374
|
+
GDS_CONNECTOR_STRIPE_CONNECT_APPLICATION_WEBHOOK_LIVE_SIGN_SECRET: stripe/production/live/webhook-connect-events-secret
|
|
375
|
+
GDS_CONNECTOR_STRIPE_CONNECT_APPLICATION_WEBHOOK_TEST_SIGN_SECRET: stripe/production/test/webhook-connect-events-secret
|
|
376
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE: apple_pay/worldpay/production/payment-processing-certificate-20230906
|
|
377
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_PRIVATE_KEY: apple_pay/worldpay/production/payment-processing-private-key-20230906 # pragma: allowlist secret
|
|
378
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE_SECONDARY: apple_pay/worldpay/production/payment-processing-certificate-20230906
|
|
379
|
+
WORLDPAY_APPLE_PAY_PAYMENT_PROCESSING_PRIVATE_KEY_SECONDARY: apple_pay/worldpay/production/payment-processing-private-key-20230906 # pragma: allowlist secret
|
|
380
|
+
SENTRY_DSN: sentry_io/connector_dsn
|
|
381
|
+
failwhale:
|
|
382
|
+
google-analytics-id: google-analytics/failwhale/production/google-analytics-id
|
|
383
|
+
frontend:
|
|
384
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID: apple_pay/worldpay/production/merchant-id
|
|
385
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID_CERTIFICATE: apple_pay/worldpay/production/merchant-id-certificate-20230906
|
|
386
|
+
WORLDPAY_APPLE_PAY_MERCHANT_ID_CERTIFICATE_KEY: apple_pay/worldpay/production/merchant-id-certificate-key-20230906
|
|
387
|
+
STRIPE_APPLE_PAY_MERCHANT_ID: apple_pay/stripe/production/merchant-id
|
|
388
|
+
STRIPE_APPLE_PAY_MERCHANT_ID_CERTIFICATE: apple_pay/stripe/production/merchant-id-certificate-20230823
|
|
389
|
+
STRIPE_APPLE_PAY_MERCHANT_ID_CERTIFICATE_KEY: apple_pay/stripe/production/merchant-id-certificate-key-20230823
|
|
390
|
+
STRIPE_TEST_PUBLISHABLE_API_KEY: stripe/production/test/publishable-api-key
|
|
391
|
+
STRIPE_LIVE_PUBLISHABLE_API_KEY: stripe/production/live/publishable-api-key
|
|
392
|
+
SENTRY_DSN: sentry/frontend_dsn
|
|
393
|
+
SENTRY_CSP_REPORT_URI: sentry/frontend_csp_report_uri
|
|
394
|
+
ledger:
|
|
395
|
+
DB_PASSWORD: aws/rds/application_users/production/ledger
|
|
396
|
+
SENTRY_DSN: sentry_io/ledger_dsn
|
|
397
|
+
network:
|
|
398
|
+
PAGER_DUTY_CLOUDWATCH_ALB_INTEGRATION_URL: pager-duty/govuk-pay-cloudwatch-alb/amazon-cloudwatch-integration-url
|
|
399
|
+
product-page:
|
|
400
|
+
pager_duty_cloudwatch_integration_url: pager-duty/govuk-pay-product-page/amazon-cloudwatch-integration-url
|
|
401
|
+
products:
|
|
402
|
+
SENTRY_DSN: sentry_io/products_dsn
|
|
403
|
+
products-ui:
|
|
404
|
+
SENTRY_DSN: sentry_io/products_ui_dsn
|
|
405
|
+
GOOGLE_RECAPTCHA_SECRET_KEY: google/production/captcha-secret-key
|
|
406
|
+
GOOGLE_RECAPTCHA_SITE_KEY: google/production/captcha-site-key
|
|
407
|
+
GOOGLE_RECAPTCHA_ENTERPRISE_PROJECT_ID: google/production/captcha-enterprise-project-id
|
|
408
|
+
publicapi:
|
|
409
|
+
SENTRY_DSN: sentry_io/publicapi_dsn
|
|
410
|
+
publicauth:
|
|
411
|
+
SENTRY_DSN: sentry_io/publicauth_dsn
|
|
412
|
+
terraform:
|
|
413
|
+
ADMINUSERS_RDS_PASSWORD: aws/rds/superuser/production-2/adminusers/payment-password
|
|
414
|
+
CONNECTOR_RDS_PASSWORD: aws/rds/superuser/production-2/connector/payment-password
|
|
415
|
+
LEDGER_RDS_PASSWORD: aws/rds/superuser/production-2/ledger/payment-password
|
|
416
|
+
PRODUCTS_RDS_PASSWORD: aws/rds/superuser/production-2/products/payment-password
|
|
417
|
+
PUBLICAUTH_RDS_PASSWORD: aws/rds/superuser/production-2/publicauth/payment-password
|
|
418
|
+
WEBHOOKS_RDS_PASSWORD: aws/rds/superuser/production-2/webhooks/payment-password # pragma: allowlist secret
|
|
419
|
+
ADMINUSERS_APP_RDS_PASSWORD: aws/rds/application_users/production/adminusers
|
|
420
|
+
CONNECTOR_APP_RDS_PASSWORD: aws/rds/application_users/production/connector2
|
|
421
|
+
LEDGER_APP_RDS_PASSWORD: aws/rds/application_users/production/ledger
|
|
422
|
+
PRODUCTS_APP_RDS_PASSWORD: aws/rds/application_users/production/products
|
|
423
|
+
PUBLICAUTH_APP_RDS_PASSWORD: aws/rds/application_users/production/publicauth
|
|
424
|
+
WEBHOOKS_APP_RDS_PASSWORD: aws/rds/application_users/production/webhooks # pragma: allowlist secret
|
|
425
|
+
selfservice:
|
|
426
|
+
ZENDESK_API_KEY: zendesk/api_key
|
|
427
|
+
ZENDESK_USER: zendesk/user
|
|
428
|
+
STRIPE_ACCOUNT_API_KEY: stripe/production/live/account-api-key
|
|
429
|
+
SENTRY_DSN: sentry/selfservice_dsn
|
|
430
|
+
toolbox:
|
|
431
|
+
AUTH_GITHUB_CLIENT_ID: pay-toolbox/production/github_client_id
|
|
432
|
+
AUTH_GITHUB_CLIENT_SECRET: pay-toolbox/production/github_client_secret
|
|
433
|
+
STRIPE_ACCOUNT_API_KEY: stripe/production/live/account-api-key
|
|
434
|
+
STRIPE_ACCOUNT_TEST_API_KEY: stripe/production/test/account-api-key
|
|
435
|
+
SENTRY_DSN: sentry/toolbox_dsn
|
|
436
|
+
ZENDESK_API_KEY: zendesk/api_key
|
|
437
|
+
ZENDESK_USER: zendesk/user
|
|
438
|
+
webhooks:
|
|
439
|
+
DB_PASSWORD: aws/rds/application_users/production/webhooks # pragma: allowlist secret
|
|
440
|
+
SENTRY_DSN: sentry_io/webhooks_dsn
|
|
441
|
+
webhooks_intrusion_monitoring:
|
|
442
|
+
pager_duty_cloudwatch_integration_url: pager-duty/govuk-pay/amazon-cloudwatch-integration-url
|
|
443
|
+
production:
|
|
444
|
+
alb_and_s3_logging_pipeline:
|
|
445
|
+
firehose_hec_token: splunk/firehose-hec-token
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
# secrets here are just regular values
|
|
449
|
+
# value[env][service][key] = value
|
|
450
|
+
value:
|
|
451
|
+
ci-5:
|
|
452
|
+
terraform:
|
|
453
|
+
CHEF_ROLE: "build"
|
|
454
|
+
PERF_ENV: "false"
|
|
455
|
+
deploy:
|
|
456
|
+
cd-pay-deploy:
|
|
457
|
+
pay_aws_deploy_account_id: "424875624006"
|
|
458
|
+
pay_aws_prod_account_id: "092359438320"
|
|
459
|
+
pay_aws_staging_account_id: "888564216586"
|
|
460
|
+
pay_aws_test_account_id: "223851549868"
|
|
461
|
+
pay-team-manual/github-username: "alphagov-pay-ci-concourse"
|
|
462
|
+
cd-pay-dev:
|
|
463
|
+
pay_aws_deploy_account_id: "424875624006"
|
|
464
|
+
pay_aws_staging_account_id: "888564216586"
|
|
465
|
+
pay_aws_test_account_id: "223851549868"
|
|
466
|
+
pay_aws_dev_account_id: "673337093959" # pragma: allowlist secret
|
|
467
|
+
pay_aws_ci_account_id: "687320788729" # pragma: allowlist secret
|
|
468
|
+
dev-fg-1:
|
|
469
|
+
terraform:
|
|
470
|
+
PERF_ENV: "false"
|
|
471
|
+
# These are not used in dev-fg-1 but are required by terraform make so lets make them bogus values
|
|
472
|
+
# which will fail if we try to create with them. See
|
|
473
|
+
# https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html#RDS_Limits.Constraints for
|
|
474
|
+
# dissallowed characters which we use here to ensure they are never usable passwords
|
|
475
|
+
ADMINUSERS_RDS_PASSWORD: "/" # pragma: allowlist secret
|
|
476
|
+
CONNECTOR_RDS_PASSWORD: "/" # pragma: allowlist secret
|
|
477
|
+
LEDGER_RDS_PASSWORD: "/" # pragma: allowlist secret
|
|
478
|
+
PRODUCTS_RDS_PASSWORD: "/" # pragma: allowlist secret
|
|
479
|
+
PUBLICAUTH_RDS_PASSWORD: "/" # pragma: allowlist secret
|
|
480
|
+
test-12:
|
|
481
|
+
adminusers:
|
|
482
|
+
DB_USER: "adminusers1"
|
|
483
|
+
NOTIFY_SECRET: ""
|
|
484
|
+
connector:
|
|
485
|
+
DB_USER: "connector2"
|
|
486
|
+
NOTIFY_SECRET: ""
|
|
487
|
+
frontend:
|
|
488
|
+
AB_TEST_THRESHOLD: "50"
|
|
489
|
+
GOOGLE_PAY_MERCHANT_ID: "value-not-set"
|
|
490
|
+
GOOGLE_PAY_MERCHANT_ID_2: "value-not-set"
|
|
491
|
+
ledger:
|
|
492
|
+
DB_USER: "ledger"
|
|
493
|
+
webhooks:
|
|
494
|
+
DB_USER: "webhooks"
|
|
495
|
+
publicauth:
|
|
496
|
+
DB_USER: "publicauth1"
|
|
497
|
+
products:
|
|
498
|
+
DB_USER: "products"
|
|
499
|
+
toolbox:
|
|
500
|
+
AUTH_GITHUB_VIEW_ONLY_TEAM_ID: "3304536"
|
|
501
|
+
AUTH_GITHUB_USER_SUPPORT_TEAM_ID: "3304536"
|
|
502
|
+
AUTH_GITHUB_ADMIN_TEAM_ID: "3304536"
|
|
503
|
+
terraform:
|
|
504
|
+
PERF_ENV: "false"
|
|
505
|
+
test-perf-1:
|
|
506
|
+
adminusers:
|
|
507
|
+
DB_USER: "adminusers"
|
|
508
|
+
NOTIFY_SECRET: ""
|
|
509
|
+
connector:
|
|
510
|
+
DB_USER: "connector"
|
|
511
|
+
NOTIFY_SECRET: ""
|
|
512
|
+
frontend:
|
|
513
|
+
AB_TEST_THRESHOLD: "50"
|
|
514
|
+
GOOGLE_PAY_MERCHANT_ID: "value-not-set"
|
|
515
|
+
GOOGLE_PAY_MERCHANT_ID_2: "value-not-set"
|
|
516
|
+
ledger:
|
|
517
|
+
DB_USER: "ledger"
|
|
518
|
+
publicauth:
|
|
519
|
+
DB_USER: "publicauth"
|
|
520
|
+
products:
|
|
521
|
+
DB_USER: "products"
|
|
522
|
+
terraform:
|
|
523
|
+
PERF_ENV: "true"
|
|
524
|
+
toolbox:
|
|
525
|
+
AUTH_GITHUB_CLIENT_ID:
|
|
526
|
+
AUTH_GITHUB_CLIENT_SECRET:
|
|
527
|
+
AUTH_GITHUB_VIEW_ONLY_TEAM_ID: "3304536"
|
|
528
|
+
AUTH_GITHUB_USER_SUPPORT_TEAM_ID: "3304536"
|
|
529
|
+
AUTH_GITHUB_ADMIN_TEAM_ID: "3304536"
|
|
530
|
+
webhooks:
|
|
531
|
+
DB_USER: "webhooks"
|
|
532
|
+
staging-2:
|
|
533
|
+
adminusers:
|
|
534
|
+
DB_USER: "adminusers1"
|
|
535
|
+
NOTIFY_SECRET: ""
|
|
536
|
+
connector:
|
|
537
|
+
DB_USER: "connector1"
|
|
538
|
+
NOTIFY_SECRET: ""
|
|
539
|
+
frontend:
|
|
540
|
+
AB_TEST_THRESHOLD: "50"
|
|
541
|
+
GOOGLE_PAY_MERCHANT_ID: "value-not-set"
|
|
542
|
+
GOOGLE_PAY_MERCHANT_ID_2: "value-not-set"
|
|
543
|
+
ledger:
|
|
544
|
+
DB_USER: "ledger"
|
|
545
|
+
publicauth:
|
|
546
|
+
DB_USER: "publicauth1"
|
|
547
|
+
products:
|
|
548
|
+
DB_USER: "products"
|
|
549
|
+
toolbox:
|
|
550
|
+
AUTH_GITHUB_VIEW_ONLY_TEAM_ID: "3304500"
|
|
551
|
+
AUTH_GITHUB_USER_SUPPORT_TEAM_ID: "3304500"
|
|
552
|
+
AUTH_GITHUB_ADMIN_TEAM_ID: "3304500"
|
|
553
|
+
terraform:
|
|
554
|
+
PERF_ENV: "false"
|
|
555
|
+
webhooks:
|
|
556
|
+
DB_USER: "webhooks"
|
|
557
|
+
production-2:
|
|
558
|
+
adminusers:
|
|
559
|
+
DB_USER: "adminusers1"
|
|
560
|
+
NOTIFY_SECRET: ""
|
|
561
|
+
connector:
|
|
562
|
+
DB_USER: "connector2"
|
|
563
|
+
NOTIFY_SECRET: ""
|
|
564
|
+
frontend:
|
|
565
|
+
AB_TEST_THRESHOLD: "50"
|
|
566
|
+
ledger:
|
|
567
|
+
DB_USER: "ledger"
|
|
568
|
+
publicauth:
|
|
569
|
+
DB_USER: "publicauth1"
|
|
570
|
+
products:
|
|
571
|
+
DB_USER: "products"
|
|
572
|
+
performance-slack:
|
|
573
|
+
SLACK_URI: "https://hooks.slack.com/services/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"
|
|
574
|
+
toolbox:
|
|
575
|
+
AUTH_GITHUB_VIEW_ONLY_TEAM_ID: "7196958"
|
|
576
|
+
AUTH_GITHUB_USER_SUPPORT_TEAM_ID: "3304532"
|
|
577
|
+
AUTH_GITHUB_ADMIN_TEAM_ID: "3320243"
|
|
578
|
+
terraform:
|
|
579
|
+
PERF_ENV: "false"
|
|
580
|
+
webhooks:
|
|
581
|
+
DB_USER: "webhooks"
|