Skip to content

Commit

Permalink
fix(aws-cdk): correctly pass Stack-level Tags.
Browse files Browse the repository at this point in the history
Fixes aws#2822
  • Loading branch information
skinny85 committed Jun 11, 2019
1 parent 523807c commit 053deef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/aws-cdk/lib/api/cxapp/stacks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import contextproviders = require('../../context-providers');
import { debug, error, print, warning } from '../../logging';
import { Renames } from '../../renames';
import { Configuration } from '../../settings';
import { flatMap } from '../../util/arrays';
import { SDK } from '../util/sdk';

/**
Expand Down Expand Up @@ -233,7 +234,7 @@ export class AppStacks {
* @returns an array with the tags available in the stack metadata.
*/
public getTagsFromStackMetadata(stack: cxapi.CloudFormationStackArtifact): Tag[] {
return stack.findMetadataByType(cxapi.STACK_TAGS_METADATA_KEY).map(x => x.data);
return flatMap(stack.findMetadataByType(cxapi.STACK_TAGS_METADATA_KEY), x => x.data);
}

/**
Expand Down

0 comments on commit 053deef

Please sign in to comment.