mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 12:55:32 +02:00
aws-configure: add page (#8808)
This commit is contained in:
parent
48c1cf07e6
commit
1077c06694
1 changed files with 36 additions and 0 deletions
36
pages/common/aws-configure.md
Normal file
36
pages/common/aws-configure.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# aws configure
|
||||
|
||||
> Manage configuration for the AWS CLI.
|
||||
> More information: <https://docs.aws.amazon.com/cli/latest/reference/configure/>.
|
||||
|
||||
- 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}}`
|
Loading…
Add table
Reference in a new issue