File tree 1 file changed +0
-6
lines changed
packages/@aws-cdk/app-staging-synthesizer-alpha/lib
1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -150,19 +150,13 @@ export class DefaultStagingStack extends Stack implements IStagingResources {
150
150
* Default asset publishing role name for file (S3) assets.
151
151
*/
152
152
private get fileRoleName ( ) {
153
- // This role name can be a maximum of 64 letters. The reason why
154
- // we slice the appId and not the entire name is because this.region
155
- // can be a token and we don't want to accidentally cut it off.
156
153
return `cdk-${ this . appId } -file-role-${ this . region } ` ;
157
154
}
158
155
159
156
/**
160
157
* Default asset publishing role name for docker (ECR) assets.
161
158
*/
162
159
private get imageRoleName ( ) {
163
- // This role name can be a maximum of 64 letters. The reason why
164
- // we slice the appId and not the entire name is because this.region
165
- // can be a token and we don't want to accidentally cut it off.
166
160
return `cdk-${ this . appId } -image-role-${ this . region } ` ;
167
161
}
168
162
You can’t perform that action at this time.
0 commit comments