cdk-constructs icon indicating copy to clipboard operation
cdk-constructs copied to clipboard

Feature request: CloudFormation Outputs

Open peterfranzen opened this issue 5 years ago • 1 comments

First, this is an amazing resource and thanks for the work that has gone into it.

It would be extremely helpful to include CloudFormation Outputs for each stack in order to facilitate cross-stack integration with other CDK apps. Things like ARNs for the Lambda@Edge functions in the cdk-cloudfront-authorization stack, for example.

peterfranzen avatar Oct 27 '20 15:10 peterfranzen

You can create the outputs at stack level:

new CfnOutput(this, 'HttpHeadersArn', {
      value: authorization.authFlow.httpHeaders.functionVersion.functionArn,
});

hupe1980 avatar Oct 27 '20 18:10 hupe1980