Skip to content

Instantly share code, notes, and snippets.

@mgjam
Created October 27, 2019 16:49
Show Gist options
  • Save mgjam/acc2cf85fd843d8270aa91aec5e143ce to your computer and use it in GitHub Desktop.
Save mgjam/acc2cf85fd843d8270aa91aec5e143ce to your computer and use it in GitHub Desktop.
private createApiAccessKeyOutputs(
apiAccessKey: iam.CfnAccessKey
) {
new cdk.CfnOutput(this, 'ApiAccessKeyId', {
value: apiAccessKey.ref
});
new cdk.CfnOutput(this, 'ApiSecretAccessKey', {
value: apiAccessKey.attrSecretAccessKey
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment