Skip to content

Commit 0d60dab

Browse files
authored
Merge branch 'main' into job-runner-test-fix
2 parents 838a613 + f923125 commit 0d60dab

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

docs/public/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ Notice the use of the `provisioning.sh` and `deprovisioning.sh` scripts at the t
203203

204204
```typescript
205205
const provisioningJobRunnerProps = {
206-
name: 'provisioning',
207206
permissions: PolicyDocument.fromJson(/*See below*/),
208207
script: '' /*See below*/,
209208
environmentStringVariablesFromIncomingEvent: ['tenantId', 'tier'],
@@ -223,7 +222,6 @@ Let's take a moment and dissect this object.
223222

224223
| Key | Type | Purpose |
225224
| ----------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
226-
| **name** | string | The **name** key is just a name for this job. |
227225
| **script** | string | A string in bash script format that represents the job to be run (example below) |
228226
| **permissions** | [PolicyDocument](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_iam.PolicyDocument.html) | An IAM policy document giving this job the IAM permisisons it needs to do what it's being asked to do |
229227
| **environmentStringVariablesFromIncomingEvent** | string[] | The environment variables to import into the BashJobRunner from event details field. |
@@ -373,7 +371,6 @@ export class AppPlaneStack extends cdk.Stack {
373371
super(scope, id, props);
374372

375373
const provisioningJobRunnerProps = {
376-
name: 'provisioning',
377374
permissions: new PolicyDocument({
378375
statements: [
379376
new PolicyStatement({

0 commit comments

Comments
 (0)