AWS cli documentation change
Summary
Added new parameters --deployment-config and --disable-validation/--no-disable-validation to configure stack deployment behavior and disable pre-deployment validations
Security assessment
The change introduces new deployment configuration options but doesn't reference any security vulnerability or incident. The --disable-validation flag could potentially impact security by bypassing checks, but there's no evidence this addresses a specific security issue.
Diff
diff --git a/cli/latest/reference/cloudformation/update-stack.md b/cli/latest/reference/cloudformation/update-stack.md index 5a83eccfa..4a3dd184a 100644 --- a//cli/latest/reference/cloudformation/update-stack.md +++ b//cli/latest/reference/cloudformation/update-stack.md @@ -15 +15 @@ - * [AWS CLI 2.35.11 Command Reference](../../index.html) » + * [AWS CLI 2.35.13 Command Reference](../../index.html) » @@ -89,0 +90,2 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/cloudf + [--deployment-config <value>] + [--disable-validation | --no-disable-validation] @@ -523,0 +526,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` + @@ -685 +734 @@ OperationId -> (string) - * [AWS CLI 2.35.11 Command Reference](../../index.html) » + * [AWS CLI 2.35.13 Command Reference](../../index.html) »