Skip to content

Commit

Permalink
Merge pull request #52 from GemeenteNijmegen/acceptance
Browse files Browse the repository at this point in the history
- feat: add param for org id
- chore: upgrade dependencies
  • Loading branch information
joostvanderborg authored Apr 6, 2023
2 parents 45eb750 + d172c58 commit becd45a
Show file tree
Hide file tree
Showing 18 changed files with 6,029 additions and 6,038 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .mergify.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/ApiFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export class ApiFunction extends Construct {
SESSION_TABLE: props.table.tableName,
APPLICATION_URL_BASE: props.applicationUrlBase || '',
AUTH_URL_BASE: StringParameter.valueForStringParameter(this, Statics.ssmAuthUrlBaseParameter),
AUTH_ORG_ID: StringParameter.valueForStringParameter(this, Statics.ssmAuthOrgId),
OIDC_CLIENT_ID: StringParameter.valueForStringParameter(this, Statics.ssmOIDCClientID),
OIDC_SCOPE: StringParameter.valueForStringParameter(this, Statics.ssmOIDCScope),
...props.environment,
Expand Down
5 changes: 5 additions & 0 deletions src/ParameterStage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ export class ssmParamsConstruct extends Construct {
parameterName: Statics.ssmOIDCScope,
});

new SSM.StringParameter(this, 'ssm_auth_4', {
stringValue: '-',
parameterName: Statics.ssmAuthOrgId,
});

new SSM.StringParameter(this, 'ssm_uitkering_2', {
stringValue: '-',
parameterName: Statics.ssmMTLSClientCert,
Expand Down
Loading

0 comments on commit becd45a

Please sign in to comment.