Skip to content

Commit

Permalink
fix: set installLatestAwsSdk on AwsCustomResource to false (aws-ampli…
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilch authored Apr 29, 2024
1 parent 292264d commit 53665c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/amplify-graphql-model-transformer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"coverageThreshold": {
"global": {
"branches": 65,
"functions": 77,
"functions": 76,
"lines": 73
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ export const createLayerVersionCustomResource = (scope: Construct, resourceNames
policy: AwsCustomResourcePolicy.fromSdkCalls({
resources: [manifestArn],
}),
installLatestAwsSdk: false,
});

return customResource;
Expand Down Expand Up @@ -233,6 +234,7 @@ export const createSNSTopicARNCustomResource = (scope: Construct, resourceNames:
policy: AwsCustomResourcePolicy.fromSdkCalls({
resources: [manifestArn],
}),
installLatestAwsSdk: false,
});

return customResource;
Expand Down

0 comments on commit 53665c0

Please sign in to comment.