You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/task-files.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -444,8 +444,8 @@ The `update-cdk` task will deploy the a CDK workload defined in the directory sp
444
444
| 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. |
445
445
| RunNpmInstall | boolean | When true, `npm ci` will be ran before CDK and removal |
446
446
| 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} `. |
449
449
| DependsOn | Name of task or list of names | The tasks listed in this attribute will be executed before this task. |
450
450
| Skip | `true` or `false` | When `true` task (and dependent tasks) will not be executed. |
451
451
| 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