Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an 'aws configure list' command #513

Merged
merged 4 commits into from
Nov 26, 2013
Merged

Commits on Nov 26, 2013

  1. Remove unused function

    jamesls committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    a0fa3ec View commit details
    Browse the repository at this point in the history
  2. Add an 'aws configure list' command

    This will show you where all the config values are coming from.
    As part of this change, I also updated the commands.py module
    to support subcommands.  This makes it easy to create a top
    level command that supports subcommands in a declarative manner.
    You can now run:
    
    * `aws configure`
    * `aws configure list`
    
    As an example, you'll see output like this:
    
            Name                    Value             Type    Location
            ----                    -----             ----    --------
         profile                <not set>             None    None
      access_key     ****************ABCD      config_file    ~/.aws/config
      secret_key     ****************ABCD      config_file    ~/.aws/config
          region                us-west-2      config_file    ~/.aws/config
    jamesls committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    a54f886 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    83574d2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    89c1551 View commit details
    Browse the repository at this point in the history