Skip to content

Commit

Permalink
feat: put cfnOutputs back to custom stack
Browse files Browse the repository at this point in the history
  • Loading branch information
martin.mueller committed Jan 3, 2021
1 parent 8c798dc commit 438b8d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/default.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('Create', () => {
repositoryName: 'aws-cdk-staging-pipeline',
customStack: (scope, _) => {
customStack = new CustomStack(scope, 'TestCustomStack');
customStack.cfnOutputs.Blub = { value: 'BlubValue' };
customStack.cfnOutputs.Blub = new core.CfnOutput(customStack, 'OutputBlub', { value: 'BlubValue ' });
return customStack;
},
gitHub: { owner: 'mmuller88', oauthToken: new core.SecretValue('repo-token') },
Expand Down
2 changes: 1 addition & 1 deletion test/integ.default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class IntegTesting {
repositoryName: 'aws-cdk-staging-pipeline',
customStack: (scope, _) => {
const customStack = new CustomStack(scope, 'TestCustomStack');
customStack.cfnOutputs.Blub = { value: 'BlubValue' };
customStack.cfnOutputs.Blub = new core.CfnOutput(customStack, 'OutputBlub', { value: 'BlubValue ' });
return customStack;
},
manualApprovals: (_) => true,
Expand Down

0 comments on commit 438b8d9

Please sign in to comment.