4ff96069f7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
26 lines
727 B
Ruby
26 lines
727 B
Ruby
require 'formula'
|
|
|
|
class AwsCfnTools < AmazonWebServicesFormula
|
|
homepage 'http://aws.amazon.com/developertools/AWS-CloudFormation/2555753788650372'
|
|
url 'https://s3.amazonaws.com/cloudformation-cli/AWSCloudFormation-cli.zip'
|
|
version '1.0.11'
|
|
sha1 '45ab67be14e2dc895b73516063062e5406b8e270'
|
|
|
|
depends_on 'ec2-api-tools'
|
|
|
|
def install
|
|
standard_install
|
|
end
|
|
|
|
def caveats
|
|
s = standard_instructions "AWS_CLOUDFORMATION_HOME"
|
|
s += <<-EOS.undent
|
|
export AWS_CREDENTIAL_FILE="<Path to the credentials file>"
|
|
|
|
Create the credential files with chmod 600 permissions containing two lines:
|
|
AWSAccessKeyId=<Your AWS Access ID>
|
|
AWSSecretKey=<Your AWS Secret Key>
|
|
EOS
|
|
return s
|
|
end
|
|
end
|