File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ const project = new awscdk.AwsCdkConstructLibrary({
3434 } ,
3535 } ,
3636 workflowNodeVersion : '20' ,
37+ // Need to specify for the `package:python` command to be available to be used locally. The `release.yml` GH Workflow
38+ // will fail to publish as these secrets have not been set.
39+ // TODO: Change the workflow to not publish to PyPi
3740 publishToPypi : {
3841 distName : 'recipes_dlz' ,
3942 module : 'recipes_dlz' ,
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ export class ManagementStack extends DlzStack {
254254 const role = new iam . Role ( this , this . resourceName ( 'git-hub-deploy-role' ) , {
255255 roleName : this . resourceName ( 'git-hub-deploy-role' ) ,
256256 assumedBy : new iam . WebIdentityPrincipal ( githubProvider . openIdConnectProviderArn , conditions ) ,
257- // managedPolicies: [iam.ManagedPolicy.fromAwsManagedPolicyName('AdministratorAccess')],
257+ managedPolicies : [ iam . ManagedPolicy . fromAwsManagedPolicyName ( 'AdministratorAccess' ) ] ,
258258 inlinePolicies : {
259259 'cdk-assume' : new iam . PolicyDocument ( {
260260 statements : [
You can’t perform that action at this time.
0 commit comments