Skip to content

Commit 145a572

Browse files
committed
chore: update cdk docs
1 parent bd27987 commit 145a572

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to aws organization formation will be documented in this fil
55
**BREAKING CHANGES**:
66
- v1.0.0: execution role under which org-formation is ran requires the ec2:describeRegions permission
77

8-
**unreleased**
8+
**version: 1.0.13**
99
- fix: cdk tasks use `--force` when deleting stacks
1010
- chore: usage of AWS SDK v3 (upgrade from V2)
1111
- fix: deleting stacks without explicit concurrency settings will default to settings passed to the CLI (instead of 1)

docs/task-files.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -444,8 +444,8 @@ The `update-cdk` task will deploy the a CDK workload defined in the directory sp
444444
| IgnoreFileChanges | string or list | Regex, Name or list of regex/names for files that if matched will be ignored when generating the MD5 hash to detect if update is actually necessary. |
445445
| RunNpmInstall | boolean | When true, `npm ci` will be ran before CDK and removal |
446446
| RunNpmBuild | boolean | When true, `npm run build` will be ran before CDK and removal |
447-
| CustomDeployCommand | string | When specified will override the default command used when deploying a CDK workload. <br/><br/>default command is: `npm ci && npm run build && npx cdk deploy --all --require-approval ${CurrentTask.Parameters} --output cdk.out/${CurrentTask.AccountId} `. |
448-
| CustomRemoveCommand | string | When specified will override the default command used when removing a CDK workload. <br/><br/>default command is: `npm ci && npm run build && npx cdk destroy --all --require-approval ${CurrentTask.Parameters} `. |
447+
| CustomDeployCommand | string | When specified will override the default command used when deploying a CDK workload. <br/><br/>default command is: `npm ci && npm run build && npx cdk deploy --all --require-approval=never ${CurrentTask.Parameters} --output cdk.out/${CurrentTask.AccountId} `. |
448+
| CustomRemoveCommand | string | When specified will override the default command used when removing a CDK workload. <br/><br/>default command is: `npm ci && npm run build && npx cdk destroy --all --force ${CurrentTask.Parameters} `. |
449449
| DependsOn | Name of task or list of names | The tasks listed in this attribute will be executed before this task. |
450450
| Skip | `true` or `false` | When `true` task (and dependent tasks) will not be executed. |
451451
| TaskRoleName | string | Specifies the name of the IAM Role that must be used for cross account access. A role with this is expected to exist in the target account (and have the right AssumeRole permissions). |

0 commit comments

Comments
 (0)