Skip to content

Commit

Permalink
fix(cli): correctly pass Stack-level Tags (#2829)
Browse files Browse the repository at this point in the history
Fixes #2822
  • Loading branch information
skinny85 authored and rix0rrr committed Jun 12, 2019
1 parent 11598c0 commit e0718ef
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 @@ -5,6 +5,7 @@ import minimatch = require('minimatch');
import contextproviders = require('../../context-providers');
import { debug, error, print, warning } from '../../logging';
import { Configuration } from '../../settings';
import { flatMap } from '../../util/arrays';
import { SDK } from '../util/sdk';

/**
Expand Down Expand Up @@ -218,7 +219,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 e0718ef

Please sign in to comment.