This repository is deprecated in favour of the https://github.com/cmlicata/cloudcli-cookbook fork.
Installs the AWS Command Line Interface tools and provides a set of LWRPs for use within chef cookbooks.
The benefits of using the awscli are as follows:
- awscli is maintained by Amazon and is updated as new APIs and Services are released
- support for IAM profiles works out of the box
- automatically take advantage of features like multi-threaded download that are built into the CLI tools
- no native compilation of dependencies is necessary
- Chef 11.6 or higher
- Ubuntu 12.04, 14.04
- CentOS 6.4, 6.5
- Amazon 2014.03
All attributes are located under node['awscli']
Attribute | Description | Example | Default |
---|---|---|---|
version | The version of awscli to install | 1.4.0 | 1.4.4 |
virtualenv | Python virtualenv you would like to install awscli into | /home/ubuntu/my_ve | nil |
Installs the awscli tools.
Action | Description |
---|---|
:get | Download a file from an s3 bucket |
Parameter | Description | Default |
---|---|---|
aws_access_key_id | AWS API Access Key ID | nil |
aws_secret_access_key | AWS API Secret Access Key | nil |
path | Location to store downloaded file | name attribute |
bucket | S3 bucket name | |
key | S3 Key name to download | |
checksum | Sha256 checksum to validate download | nil |
region | AWS endpoint region | us-east-1 |
timeout | Number of seconds to wait for download to complete | 900 |
owner | The owner of the downloaded file | root |
group | The group name the file should be grouped into | root |
mode | The mode to set on the file. Setting to nil, leaves this to the operating system defaults | nil |
# Provide all credential information to download file and store it to /tmp/testfile
awscli_s3_file '/tmp/testfile' do
aws_access_key_id 'YOUR_ACCESS_KEY_ID'
aws_secret_access_key 'YOUR_SECRET_ACCESS_KEY'
region 'us-west-2'
bucket 'my-test-bucket'
key 'my_large_file.gz'
checksum '37f9405a23d1e53082dbe9ea0ef19ec8791c778a6ecd0b02a6c1af2cf9bd4847'
timeout 1200
owner 'testuser'
group 'testgroup'
mode '0644'
end
# Do not pass any credentials to provider because our instance is on EC2 and uses an IAM Profile
awscli_s3_file '/tmp/testfile' do
bucket 'my-test-bucket'
key 'my_large_file.gz'
end
In order to run the integration tests for this cookbook, you must have a valid AWS account and go through a few setup steps. Please note, you may incur AWS fees when executing the kitchen integration tests.
The testing suites are setup to use environment variables to pass in end user specific information.
These variables are used to setup the test_get
and profile_test_get
(kitchen-ec2 only) suites. Kitchen will setup proper
node attributes based on these variables. See the .kitchen.yml file for information on which variables are set.
export TEST_AWS_ACCESS_KEY_ID=
export TEST_AWS_SECRET_ACCESS_KEY=
export TEST_AWS_REGION=
export TEST_BUCKET=
export TEST_KEY=
export TEST_CHECKSUM=
The .kitchen.cloud.yml file is used to test within EC2. In order to use it, you must configure proper AWS security credentials as well as a few other settings. Take a look at .kitchen.cloud.yml to see which specific kitchen-ec2 variables are set from these environment variables.
export AWS_ACCESS_KEY_ID=
export AWS_SECRET_ACCESS_KEY=
export AWS_KEYPAIR_NAME=
export AWS_REGION=
export AWS_AVAILABILITY_ZONE=
export EC2_SSH_KEY_PATH=
export AWS_EC2_AMI=
export AWS_IAM_PROFILE=
The following items need to be setup properly in order to use the test_get
suite.
- AWS S3 Bucket containing a test file
- AWS IAM Account with at least GetObject access to the bucket setup in the previous step
- AWS IAM Account API keys for the account setup in the previous step
The following items need to be setup properly in order to use the profile_test_get
suite.
- AWS S3 Bucket containing a test file
- AWS IAM Role/Profile with at least GetObject access to the bucket setup in the previous step
- AWS IAM Account API Keys for an account with enough access to run an EC2 instance
The test_get
suite will download the file by
providing the credentials configured via the environment. Those files
will then be verified against the checksum you set via
TEST_CHECKSUM
. If the checksum does not match the downloaded file,
the tests will fail.
Note: kitchen-ec2 profile support is waiting for a release. If you would like to test with IAM profiles, you will need to build the kitchen-ec2 gem from source.
The profile_test_get
suite is only available when using the
kitchen-ec2 driver. The .kitchen.cloud.yml file is configured to use
the kitchen-ec2 driver. To enable this file, set the
KITCHEN_LOCAL_YAML
environment variable to the path for the
.kitchen.cloud.yml file.
- IAM Role Documentation: http://docs.aws.amazon.com/IAM/latest/UserGuide/role-usecase-ec2app.html
- kitchen-ec2 plugin repository: https://github.com/test-kitchen/kitchen-ec2
-
Fork the repository on Github: https://help.github.com/articles/fork-a-repo
-
Clone the repository locally:
$ git clone http://github.com/awslabs/awscli-cookbook
-
Create a named feature branch:
$ cd awscli-cookbook $ git checkout -b [new feature branch]
-
Add your change(s)
-
Write tests for your change(s):
Please add tests for your changes. This helps prevent regressions in the future.
-
Install the gem dependencies:
bundle install
-
Run the integration and spec tests to ensure they all pass:
bundle exec rake integration
-
Run the style tests to ensure they all pass:
bundle exec rake style
-
Update the README.md with new information if applicable.
-
Commit and push your changes up to your feature branch
-
Submit a Pull Request
- Author:: Nick Downs (ndowns@amazon.com)
Copyright 2014 Amazon Web Services
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.