-
Notifications
You must be signed in to change notification settings - Fork 1
PYIC-7872: Add AppConfigService #3117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MikeCollingwood
wants to merge
32
commits into
main
Choose a base branch
from
pyic-7872
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
09d671f
Revert "Revert "PYIC-7872: Add AppConfigService""
MikeCollingwood 6503503
PYIC-7872: Use AWS powertools version of AppConfigProvider now it is …
MikeCollingwood 48e4d9c
PYIC-7872: Update appConfigProvider definition to use getAppConfigPro…
MikeCollingwood 2ac3422
PYIC-7872: Update CONFIG_SOURCE tp app-config
MikeCollingwood 947af71
PYIC-7872: Update APP_CONFIG variable setting
MikeCollingwood d67ed3e
PYIC-7872: Hardcode profile id
MikeCollingwood b718244
PYIC-7872: Hardcode appconfig app & environment id
MikeCollingwood e89306b
PYIC-7872: Add debugging logging
MikeCollingwood 28981fd
PYIC-7872: Add config to run API tests against dev01
MikeCollingwood 691989f
PYIC-7872: Update api test workflow for dev
MikeCollingwood 558b2d9
PYIC-7872: Lint fix Build, tag, push, and sign api testing image to b…
MikeCollingwood d2eb321
PYIC-7872: Update build-test-images-if-needed to pass through the env…
MikeCollingwood 514f0d3
PYIC-7872: Update api tests to use environment passed to it
MikeCollingwood aee0c6e
PYIC-7872: Add temporary logging to getIdentity for debugging API tes…
MikeCollingwood 4cc0425
PYIC-7872: Add temporary logging to getIdentity for debugging API tes…
MikeCollingwood 9bfdb1f
PYIC-7872: Fix temporary logging to getIdentity for debugging API tes…
MikeCollingwood 8157994
Merge remote-tracking branch 'origin/main' into pyic-7872
MikeCollingwood c0e3367
PYIC-7872: Remove temporary logging
MikeCollingwood 308cc36
Merge branch 'main' into pyic-7872
MikeCollingwood 87739a7
PYIC-7872: Update CORE_BACK_INTERNAL_API_URL to use https://
MikeCollingwood 9d9d3a7
PYIC-7872: Add temporary logging
MikeCollingwood e680c4a
PYIC-7872: Remove breaking temporary logging
MikeCollingwood b003d0f
PYIC-7872: Add KEY literal to .env.dev01
MikeCollingwood 76793f5
PYIC-7872: Remove .env manipulation
MikeCollingwood b489a74
Merge branch 'main' into pyic-7872
MikeCollingwood a239042
Merge branch 'main' into pyic-7872
MikeCollingwood 2dde2c9
PYIC-7872: Refactor api-tests/run-tests.sh
MikeCollingwood 05460fe
PYIC-7872: Fix secure-post-merge.yml to reference main
MikeCollingwood d49df54
Merge branch 'main' into pyic-7872
MikeCollingwood bb69391
PYIC-7872: Fix secure-post-merge.yml to reference current branch
MikeCollingwood df86363
PYIC-7872: Revert secure-post-merge.yml changes
MikeCollingwood 40ab496
PYIC-7872: Revert secure-post-merge.yml refactor
MikeCollingwood File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Dev01 env config | ||
CORE_BACK_COMPONENT_ID="https://dev.01.dev.identity.account.gov.uk" | ||
CORE_BACK_INTERNAL_API_URL="https://internal-test-api-dev.01.dev.identity.account.gov.uk" | ||
CORE_BACK_INTERNAL_API_KEY=${CORE_BACK_INTERNAL_API_KEY}-dev | ||
CORE_BACK_EXTERNAL_API_URL="https://api-dev.01.dev.identity.account.gov.uk" | ||
CORE_BACK_CRI_CLIENT_ID="ipv-core-dev" | ||
ORCHESTRATOR_REDIRECT_URL="https://orch.stubs.account.gov.uk/callback" | ||
# The below private key is a test key that is already in the public domain. It is not used for anything sensitive. | ||
JAR_SIGNING_KEY='{"kty":"EC","d":"OXt0P05ZsQcK7eYusgIPsqZdaBCIJiW4imwUtnaAthU","crv":"P-256","x":"E9ZzuOoqcVU4pVB9rpmTzezjyOPRlOmPGJHKi8RSlIM","y":"KlTMZthHZUkYz5AleTQ8jff0TJiS3q2OB9L5Fw4xA04", "kid":"orch-signing-stubs-prod-FI4xysvMVdRtkt6xmO5gqcaTF4Tf9NKD1zdg3T8y69M"}' # pragma: allowlist secret | ||
ASYNC_QUEUE_NAME="stubQueue_criResponseQueue_dev" | ||
ASYNC_QUEUE_DELAY=5 | ||
EVCS_STUB_BASE_URL="https://evcs.stubs.account.gov.uk" | ||
TICF_STUB_BASE_URL="https://ticf.stubs.account.gov.uk" | ||
CIMIT_INTERNAL_API_URL="https://cimit-api.stubs.account.gov.uk" | ||
CIMIT_STUB_BASE_URL="https://cimit.stubs.account.gov.uk" | ||
|
||
# Also requires the following to be specified in .env or as an env variable | ||
# CORE_BACK_INTERNAL_API_KEY | ||
# CRI_STUB_GEN_CRED_API_KEY | ||
# EVCS_STUB_API_KEY | ||
# MANAGEMENT_TICF_API_KEY | ||
# MANAGEMENT_CIMIT_STUB_API_KEY | ||
# CIMIT_INTERNAL_API_KEY |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will change this main before merging