Skip to content

Commit

Permalink
Update README.md (#138)
Browse files Browse the repository at this point in the history
Update sample code to follow the correct types.
  • Loading branch information
Victor-Jansson authored Feb 14, 2025
1 parent 4757cba commit 23a739c
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions docs/public/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,12 +409,14 @@ export tenantStatus="created"
echo "done!"
`,
environmentStringVariablesFromIncomingEvent: ['tenantId', 'tier'],
environmentVariablesToOutgoingEvent: [
'tenantS3Bucket',
'someOtherVariable',
'tenantConfig',
'tenantStatus',
],
environmentVariablesToOutgoingEvent: tenantData: {
[
'tenantS3Bucket',
'someOtherVariable',
'tenantConfig',
'tenantStatus',
]
},
scriptEnvironmentVariables: {
TEST: 'test',
},
Expand All @@ -428,7 +430,7 @@ echo "done!"
);

new sbt.CoreApplicationPlane(this, 'CoreApplicationPlane', {
eventManager: eventManager,
eventManager: props.eventManager,
scriptJobs: [provisioningJobScript],
});
}
Expand Down

0 comments on commit 23a739c

Please sign in to comment.