Skip to content

(core): When cloudformation spec adds a Tags property to an existing resource, this can break customer deployments or cause unexpected changes #15947

Open
@madeline-k

Description

@madeline-k

If a CDK user has added Tags to a construct, those tags will be added to all cloudformation resources within that construct's scope. If the Tags property was added to a resource via a cloudformation spec update, then when the CDK user updates their CDK version, a new Tags property will be added to that resource. This might not be what the user intended, and can cause deployment failures in some cases.

Reproduction Steps

Repro steps for one incarnation of this issue.

  1. Deploy below sample with CDK version 1.113.0 or below.
export class CodeDeploy extends cdk.Construct {
  constructor(scope: cdk.Stack, id: string, props: cdk.StackProps) {
    super(scope, id)
    
    const fn = new lambda.Function(this, 'MyLambda', {
      code: new lambda.InlineCode('foo'),
      handler: 'index.handler',
      runtime: lambda.Runtime.NODEJS_10_X,
    });
    const alias = new lambda.Alias(this, "alias", { aliasName: "Prod", version: fn.currentVersion })

    const deployment = new codedeploy.LambdaDeploymentGroup(this, "deployment-group", {
      alias,
    })

    // This adds a 'Name' tag to all cloudformation resources in the `deployment` construct's scope.
    cdk.Tags.of(deployment).add('Name', `buffer-${props.environment}`)
  }
}
  1. Upgrade to CDK version 1.114.0 or greater.

What did you expect to happen?

Deployment succeeds after upgrade.

What actually happened?

Deployment failed with error "Update to resource type AWS::CodeDeploy::Application is not supported" after upgrade, because the "Name" tag was added to the CodeDeploy::Application resource inside the LambdaDeploymentGroup construct.

Workaround

Explicitly remove tags from being added to specific resource types within your constructs.

const tagOptions = {
  excludeResourceTypes: ['AWS::CodeDeploy::Application'],
};
cdk.Tags.of(deployment).add('Name', `buffer-${props.environment}`, tagOptions);

This is 🐛 Bug Report

Metadata

Metadata

Assignees

No one assigned

    Labels

    @aws-cdk/aws-cloudformationRelated to AWS CloudFormationbugThis issue is a bug.effort/mediumMedium work item – several days of effortp2package/cfnRelated to the CFN layer (L1)

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions