Aws::ProfileParser
Add this line to your application's Gemfile:
gem 'aws-profileparser'
And then execute:
$ bundle
Or install it yourself as:
$ gem install aws-profileparser
Installation
Add this line to your application's Gemfile:
gem 'aws-profile_parser'
And then execute:
$ bundle
Or install it yourself as:
$ gem install aws-profile_parser
Usage
You have to set ENV['AWS_CONFIG_FILE'] beofre using this gem.
$ export AWS_CONFIG_FILE=/path/to/your/config
And write simple code as below.
require 'aws-profile_parser'
require 'aws-sdk'
ARGV. do |opt|
profile = default
opt.on('--profile PROFILE') { |v| profile = v}
opt.parse!
parser = ProfileParser.new
= parser.get(profile)
AWS.config()
end
Contributing
- Fork it ( https://github.com/masaomoc/aws-profile_parser/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request