From 1077c066946949035affa26ab882b54854053461 Mon Sep 17 00:00:00 2001 From: Raul Piraces Alastuey Date: Sun, 9 Oct 2022 06:56:00 +0200 Subject: [PATCH] aws-configure: add page (#8808) --- pages/common/aws-configure.md | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/aws-configure.md diff --git a/pages/common/aws-configure.md b/pages/common/aws-configure.md new file mode 100644 index 0000000000..1e1f4e1b83 --- /dev/null +++ b/pages/common/aws-configure.md @@ -0,0 +1,36 @@ +# aws configure + +> Manage configuration for the AWS CLI. +> More information: . + +- Configure AWS CLI interactively (creates a new configuration or updates the default): + +`aws configure` + +- Configure a named profile for AWS CLI interactively (creates a new profile or updates an existing one): + +`aws configure --profile {{profile_name}}` + +- Display the value from a specific configuration variable: + +`aws configure get {{name}}` + +- Display the value for a configuration variable in a specific profile: + +`aws configure get {{name}} --profile {{profile_name}}` + +- Set the value of a specific configuration variable: + +`aws configure set {{name}} {{value}}` + +- Set the value of a configuration variable in a specific profile: + +`aws configure set {{name}} {{value}} --profile {{profile_name}}` + +- List the configuration entries: + +`aws configure list` + +- List the configuration entries for a specific profile: + +`aws configure list --profile {{profile_name}}`