Forge Home

awscli_bundled

Installs bundled aws cli software

21,917 downloads

21,301 latest version

4.3 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.2 (latest)
  • 0.1.1
  • 0.1.0
released Oct 6th 2015

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'ignis-awscli_bundled', '0.1.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add ignis-awscli_bundled
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install ignis-awscli_bundled --version 0.1.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

ignis/awscli_bundled — version 0.1.2 Oct 6th 2015

awscli_bundled

Table of Contents

  1. Overview
  2. Usage - Configuration options and additional functionality
  3. Limitations - OS compatibility, etc.

Overview

This module installs a bundled version of awscli Bundled version means it depends on your local system python only during installation which is much safer in the long run.

Usage

Just add require awscli_bundled to a manifest where you need to use awscli. Or, if we need more customization, declare a class with parameters as shown:

class { 'awscli_bundled':
  awscli_install_dir    => '/usr/local/aws',
  awscli_source_dir     => 'http://your.company.com/custom-awscli-bundle.zip',
  awscli_binary_symlink => undef,
  wget_temp_dir         => '/var/tmp/puppet_wget'
}

If you set awscli_binary_symlink to undef that will skip creating a symlink in /usr/local/bin. Do it if you would like to manage your PATH variable independently.

Limitations

This module was tested on CentOS 6.x so far.