Coder Social home page Coder Social logo

jlaws's Introduction

jlaws cookbook

Uses the AWS ruby SDK gem to interact with AWS because I got tired of chasing bugs in other cookbooks.

It is designed to use the IAM instance profiles assigned to EC2 instances. Currently it doesn't support providing AWS credentials to resources directly

Requirements

Installs the aws-sdk gem and it's dependencies at compile time.

Usage

To make LWRPs available for use and install the aws-sdk gem:

include_recipe "jlaws"

Resources

jlaws_s3_file

The supports the same attributes as the file resource.

  jlaws_s3_file '/var/files/from/s3/mylocalfile.txt'
    bucket      'my-s3bucket'
    remote_path 'folder/mys3file.txt'
  end

Libraries

Jlaws.S3DataBagSecret

Alternately to the jlaws_s3_file resource if you need to use the contents of an S3 file during a chef run you may do the following:

secret = Jlaws.S3DataBagSecret(
  'my-s3-bucket',
  'databag-keys-folder/my_data_bag_secret'
)
data_bag_item = Chef::EncryptedDataBagItem.load('my_data_bag', 'item', secret)

Check ec2 instance status in AWS

Extend existing Chef Resources and base actions on the following checks:

  • node_running?('id-1111111')
  • node_stopped?('id-2222222')
  • node_stopping?('id-333333')
  • node_terminated?('id-444444')

Example extending Log resource:

include_recipe 'jlaws'
Chef::Resource::Log.send(:include, Jlaws::Helper)

log "Node i-42273d11 is running!" do
  only_if { instance_running?('i-42273d11') }
end

Testing

Some local testing can be done with test-kitchen. To test AWS instance statuses you must first export AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY.

Author

Author:: James Legg ([email protected])

jlaws's People

Contributors

jameslegg avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.