Skip to content

Commit

Permalink
chore(s3-deployments): update python version on BucketDeployment hand…
Browse files Browse the repository at this point in the history
…ler (#16771)

fixes :#16669

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
peterwoodworth authored and njlynch committed Oct 11, 2021
1 parent 2fa4e96 commit bea631b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@
"Ref": "EnvFileDeploymentAwsCliLayerA8FC897D"
}
],
"Runtime": "python3.6",
"Runtime": "python3.7",
"Timeout": 900
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export class BucketDeployment extends CoreConstruct {
uuid: this.renderSingletonUuid(props.memoryLimit, props.vpc),
code: lambda.Code.fromAsset(path.join(__dirname, 'lambda')),
layers: [new AwsCliLayer(this, 'AwsCliLayer')],
runtime: lambda.Runtime.PYTHON_3_6,
runtime: lambda.Runtime.PYTHON_3_7,
environment: props.useEfs ? {
MOUNT_PATH: mountPath,
} : undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
"Ref": "DeployWithInvalidationAwsCliLayerDEDD5787"
}
],
"Runtime": "python3.6",
"Runtime": "python3.7",
"Timeout": 900
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
"Ref": "DeployMeAwsCliLayer5F9219E9"
}
],
"Runtime": "python3.6",
"Runtime": "python3.7",
"Timeout": 900
},
"DependsOn": [
Expand Down Expand Up @@ -1495,7 +1495,7 @@
"Ref": "DeployMeWithEfsStorageAwsCliLayer1619A3EE"
}
],
"Runtime": "python3.6",
"Runtime": "python3.7",
"Timeout": 900,
"VpcConfig": {
"SecurityGroupIds": [
Expand Down

0 comments on commit bea631b

Please sign in to comment.