Skip to content

Commit

Permalink
fix dynamodb linkable
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Jun 10, 2024
1 parent 7ee4f71 commit 7b0d30a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/platform/src/auto/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export async function run(program: automation.PulumiFn) {
addTransformationToEnsureUniqueComponentNames();
addTransformationToCheckBucketsHaveMultiplePolicies();

Link.makeLinkable(aws.dynamodb.Table, function () {
Link.makeLinkable(aws.dynamodb.Table, (db) => {
return {
properties: { tableName: this.name },
properties: { tableName: db.name },
};
});
Link.AWS.makeLinkable(aws.dynamodb.Table, function () {
Expand Down

0 comments on commit 7b0d30a

Please sign in to comment.