Skip to content

shinesolutions/puppet-amazon-ssm-agent

Repository files navigation

Build Status Published Version Downloads Count Known Vulnerabilities

Puppet AEM Resources

A Puppet module for provisioning AWS Systems Manager agent.

Learn more about Puppet AEM Resources:

Installation

puppet module install shinesolutions-amazon_ssm_agent

Or via a Puppetfile:

mod 'shinesolutions/amazon_ssm_agent'

If you want to use the master version:

mod 'shinesolutions/amazon_ssm_agent', :git => 'https://github.com/shinesolutions/amazon_ssm_agent'

Usage

Provision SSM agent with default region us-east-1:

include amazon_ssm_agent

Provision SSM agent with a custom region:

class {'amazon_ssm_agent':
  region => 'ap-southeast-2',
}

Provision SSM agent with proxy configuration:

class {'amazon_ssm_agent':
  region     => 'ap-southeast-2',
  proxy_host => 'some.proxy.com',
  proxy_port => '3128'
}