-
Notifications
You must be signed in to change notification settings - Fork 3
CCM-21858: APIM Auth module #237
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
simonlabarere
wants to merge
25
commits into
main
Choose a base branch
from
feature/CCM-21858_apim_auth_module
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
25 commits
Select commit
Hold shift + click to select a range
771ca22
CCM-21858: APIM Auth module
simonlabarere cb1a389
CCM-21858: Fix TF
simonlabarere 9cfb5f0
CCM-21858: Fix TF
simonlabarere d51e5fa
CCM-21858: Fix TF
simonlabarere 0b99d4b
CCM-21858: Fix TF
simonlabarere ede6e47
CCM-21858: APIM auth lambdas + utils
simonlabarere 270352f
CCM-21858: Remove pnpm v10 from tool versions
simonlabarere ccff79a
CCM-21858: use pnpm v11 to build docs
simonlabarere 71ceaa5
CCM-21858: Run unit tests and linting in pipeline
simonlabarere 6d53b2c
CCM-21858: Compile lambdas
simonlabarere a65aa97
CCM-21858: Include lambda dist as part of module packaging
simonlabarere 5e01210
CCM-21858: Fix linting + unit tests + add typecheck
simonlabarere b747b0d
CCM-21858: Fix linting + unit tests + add typecheck
simonlabarere 009528c
CCM-21858: Add typecheck
simonlabarere 36c505b
CCM-21858: Build lambda as part of packaging attempt
simonlabarere 8c4ca91
CCM-21858: Cloudfront s3 bucket for logging
simonlabarere 5e57a54
CCM-21858: Remove cloudfront logging config
simonlabarere 6677b0a
CCM-21858: Remove cloudfront logging config
simonlabarere f0bc87f
CCM-21858: Fix lambda dist paths
simonlabarere b4322c6
CCM-21858: Fix lambda dist paths
simonlabarere f0563c8
CCM-21858: Address review comments
simonlabarere 24741a8
CCM-21858: Allow execution of set-github-token.sh
simonlabarere 4a532df
CCM-21858: Fix typecheck and unit tests
simonlabarere 68c9f37
CCM-21858: Fix pipeline issues
simonlabarere 471bbd9
CCM-21858: Address more review comments
simonlabarere 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| name: 'Node install and setup' | ||
| description: 'Setup node with pnpm and authenticate github package repository' | ||
|
|
||
| inputs: | ||
| node-version: | ||
| description: 'Node.js version' | ||
| required: true | ||
| pnpm-version: | ||
| description: 'pnpm version' | ||
| required: true | ||
| GITHUB_TOKEN: | ||
| description: "Token for access to github package registry" | ||
| required: true | ||
|
|
||
| runs: | ||
| using: 'composite' | ||
| steps: | ||
| - name: 'Setup pnpm' | ||
| uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0 | ||
| with: | ||
| version: '${{ inputs.pnpm-version }}' | ||
|
|
||
| - name: 'Use Node.js' | ||
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | ||
| with: | ||
| node-version: '${{ inputs.node-version }}' | ||
| cache: 'pnpm' | ||
|
gareth-allan marked this conversation as resolved.
|
||
|
|
||
| - name: "Configure pnpm for GitHub Packages" | ||
| shell: bash | ||
| env: | ||
| GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }} | ||
| run: | | ||
| scripts/set-github-token.sh | ||
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
|
gareth-allan marked this conversation as resolved.
|
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 |
|---|---|---|
|
|
@@ -22,3 +22,4 @@ node_modules | |
| dist | ||
| .DS_Store | ||
| .reports | ||
| .turbo | ||
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.
Uh oh!
There was an error while loading. Please reload this page.