AWS cli documentation change
Summary
Added --deployment-config option with Mode (STANDARD/EXPRESS) and DisableRollback parameters, and --disable-validation flag to skip pre-deployment validations
Security assessment
While disabling validation could potentially impact security posture, the change itself introduces new operational features without addressing specific vulnerabilities. No security advisories or vulnerability fixes are referenced in the diff.
Diff
diff --git a/cli/latest/reference/cloudformation/create-change-set.md b/cli/latest/reference/cloudformation/create-change-set.md index 993b16111..bb4c30e10 100644 --- a//cli/latest/reference/cloudformation/create-change-set.md +++ b//cli/latest/reference/cloudformation/create-change-set.md @@ -15 +15 @@ - * [AWS CLI 2.35.11 Command Reference](../../index.html) » + * [AWS CLI 2.35.13 Command Reference](../../index.html) » @@ -93,0 +94,2 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/cloudf + [--deployment-config <value>] + [--disable-validation | --no-disable-validation] @@ -626,0 +629,47 @@ JSON Syntax: +`--deployment-config` (structure) + +> The deployment configuration for this stack operation, including the deployment mode. +> +> Mode -> (string) +> +>> Specifies the deployment mode for the stack operation. Possible values are: +>> +>> * `STANDARD` \- Use the standard deployment behavior, ensuring resources are ready to serve traffic before completing the operation. This is the default. You do not need to specify this value explicitly. +>> * `EXPRESS` \- Complete the stack operation when resource configuration is applied, without waiting for resources to become ready to serve traffic. Resources continue becoming ready in the background. +>> + +>> +>> Possible values: +>> +>> * `STANDARD` +>> * `EXPRESS` +>> + +> +> DisableRollback -> (boolean) +> +>> Specifies whether to disable rollback of the stack if the stack operation fails. +>> +>> Default: `false` + +Shorthand Syntax: + + + Mode=string,DisableRollback=boolean + + +JSON Syntax: + + + { + "Mode": "STANDARD"|"EXPRESS", + "DisableRollback": true|false + } + + +`--disable-validation` | `--no-disable-validation` (boolean) + +> Set to `true` to disable pre-deployment validations in changeset or stack operations. +> +> Default: `false` + @@ -794 +843 @@ StackId -> (string) - * [AWS CLI 2.35.11 Command Reference](../../index.html) » + * [AWS CLI 2.35.13 Command Reference](../../index.html) »