AWS Security ChangesHomeSearch

AWS cli documentation change

Service: cli · 2026-04-04 · Documentation low

File: cli/latest/reference/configure/set.md

Summary

Updated AWS CLI version reference from 2.34.21 to 2.34.23 and added documentation for setting parameters in sub-sections (SSO session and services) using dotted notation for nested properties

Security assessment

The change adds documentation for configuring SSO session parameters and service-specific endpoints, which are security-related features (authentication and endpoint configuration). However, there is no evidence this addresses a specific security vulnerability or incident - it appears to be routine feature documentation enhancement.

Diff

diff --git a/cli/latest/reference/configure/set.md b/cli/latest/reference/configure/set.md
index a811f52d3..ed6d33b2e 100644
--- a//cli/latest/reference/configure/set.md
+++ b//cli/latest/reference/configure/set.md
@@ -15 +15 @@
-  * [AWS CLI 2.34.21 Command Reference](../../index.html) »
+  * [AWS CLI 2.34.23 Command Reference](../../index.html) »
@@ -80,0 +81,2 @@ Setting a value for the `aws_access_key_id`, `aws_secret_access_key`, or the `aw
+`--sso-session` | `--services` (string) The name of the sub-section to configure.
+
@@ -264,0 +267,14 @@ will produce the following updated config file:
+To set a parameter in a sub-section, use one of the available sub-section parameters (`--services` or `--sso-session`).
+
+For example, to set the `sso_start_url` in the `my-sso-sesssion` SSO session sub-section, the following command can be used:
+    
+    
+    aws configure set --sso-session my-sso-session sso_start_url https://my-sso-portal.awsapps.com/start
+    
+
+To set a nested property, use dotted notation for the parameter name along with a sub-section parameter. For example, to set the a service specific endpoint URL for EC2 in a services sub-section called `my-services`, the following command can be used:
+    
+    
+    aws configure set --services my-services ec2.endpoint_url http://localhost:4567
+    
+
@@ -275 +291 @@ will produce the following updated config file:
-  * [AWS CLI 2.34.21 Command Reference](../../index.html) »
+  * [AWS CLI 2.34.23 Command Reference](../../index.html) »