LinuxCommandLibrary

aws-configure

Manage configuration for the AWS CLI.

TLDR

Configure AWS CLI interactively (creates a new configuration or updates the default)

$ aws configure
copy


Configure a named profile for AWS CLI interactively (creates a new profile or updates an existing one)
$ aws configure --profile [profile_name]
copy


Display the value from a specific configuration variable
$ aws configure get [name]
copy


Display the value for a configuration variable in a specific profile
$ aws configure get [name] --profile [profile_name]
copy


Set the value of a specific configuration variable
$ aws configure set [name] [value]
copy


Set the value of a configuration variable in a specific profile
$ aws configure set [name] [value] --profile [profile_name]
copy


List the configuration entries
$ aws configure list
copy


List the configuration entries for a specific profile
$ aws configure list --profile [profile_name]
copy

Copied to clipboard