diff --git a/packages/@aws-cdk/app-staging-synthesizer-alpha/lib/default-staging-stack.ts b/packages/@aws-cdk/app-staging-synthesizer-alpha/lib/default-staging-stack.ts index f630bebb50d84..d3db964441f44 100644 --- a/packages/@aws-cdk/app-staging-synthesizer-alpha/lib/default-staging-stack.ts +++ b/packages/@aws-cdk/app-staging-synthesizer-alpha/lib/default-staging-stack.ts @@ -150,9 +150,6 @@ export class DefaultStagingStack extends Stack implements IStagingResources { * Default asset publishing role name for file (S3) assets. */ private get fileRoleName() { - // This role name can be a maximum of 64 letters. The reason why - // we slice the appId and not the entire name is because this.region - // can be a token and we don't want to accidentally cut it off. return `cdk-${this.appId}-file-role-${this.region}`; } @@ -160,9 +157,6 @@ export class DefaultStagingStack extends Stack implements IStagingResources { * Default asset publishing role name for docker (ECR) assets. */ private get imageRoleName() { - // This role name can be a maximum of 64 letters. The reason why - // we slice the appId and not the entire name is because this.region - // can be a token and we don't want to accidentally cut it off. return `cdk-${this.appId}-image-role-${this.region}`; }