forked from necromant2005/homebrew-boneyard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aws-iam-tools.rb
39 lines (31 loc) · 1.44 KB
/
aws-iam-tools.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class AwsIamTools < AmazonWebServicesFormula
homepage "http://aws.amazon.com/developertools/4143"
url "http://awsiammedia.s3.amazonaws.com/public/tools/cli/latest/IAMCli.zip"
sha256 "eec2795e20c1ec4374ab9c395b63db2b85ba2a74b6468fa3424276152695f68d"
version "1.5.0"
def install
standard_install
end
def caveats; <<-EOS.undent
Before you can use these tools you must export some variables to your $SHELL
and create a file containing your aws credentials.
You can access your AWS access ID and AWS secret key:
http://aws-portal.amazon.com/gp/aws/developer/account/index.html?action=access-key
You must create the file $HOME/.aws-credentials-master, here is a template:
# Enter the AWS Keys without the < or >
# You can either use the AWS Accounts access keys and they can be found at
# http://aws.amazon.com under Account->Security Credentials
# or you can use the access keys of a user created with IAM
AWSAccessKeyId=<Write your AWS access ID>
AWSSecretKey=<Write your AWS secret key>
To preserve your credentials don't forget to:
chmod 600 $HOME/.aws-credentials-master
To export the needed variables, add them to your dotfiles.
* On Bash, add them to `~/.bash_profile`.
* On Zsh, add them to `~/.zprofile` instead.
export JAVA_HOME="$(/usr/libexec/java_home)"
export AWS_IAM_HOME="#{opt_libexec}"
export AWS_CREDENTIAL_FILE=$HOME/.aws-credentials-master
EOS
end
end