Skip to content

Commit 3cc729b

Browse files
authored
Disable parallel publishing of Assets in Pipeline (#56)
* disable parallel assets * increment version * autoformat
1 parent 6cec470 commit 3cc729b

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

config/env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
App: "aws-sso-extensions-for-enterprise"
33
Environment: "env"
4-
Version: "3.1.0"
4+
Version: "3.1.1"
55

66
PipelineSettings:
77
BootstrapQualifier: "<your-bootstrap-qualifier>" # For example: 'ssoutility'

lib/lambda-functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-sso-extensions-for-enterprise-layer",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "AWS SSO Permissions Utility Layer",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"

lib/lambda-layers/nodejs-layer/nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-sso-extensions-for-enterprise-layer",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "AWS SSO Permissions Utility Layer",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"

lib/stacks/pipeline/aws-sso-extensions-for-enterprise.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export class AwsSsoExtensionsForEnterprise extends Stack {
3333
const pipeline = new CodePipeline(this, fullname(buildConfig, "pipeline"), {
3434
pipelineName: fullname(buildConfig, "pipeline"),
3535
crossAccountKeys: true,
36+
publishAssetsInParallel: false,
3637
synth: new ShellStep(fullname(buildConfig, "synth"), {
3738
input: CodePipelineSource.codeCommit(
3839
Repository.fromRepositoryArn(

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-sso-extensions-for-enterprise",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"bin": {
55
"aws-sso-extensions-for-enterprise": "bin/aws-sso-extensions-for-enterprise.js"
66
},

0 commit comments

Comments
 (0)