amazon_ssm_agent

pdk
Puppet module for managing Amazon System Manager Agent(ssm agent)

35,178 downloads

2,980 latest version

5.0 quality score

Version information

  • 1.1.0 (latest)
  • 1.0.1
  • 1.0.0
  • 0.12.0
  • 0.11.0
  • 0.10.0
  • 0.9.4
  • 0.9.3
  • 0.9.2
  • 0.9.1
  • 0.9.0
released Jul 12th 2022
This version is compatible with:
  • Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x
  • Puppet >= 5.0.0 < 8.0.0
  • RedHat
    ,
    Amazon

Start using this module

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

Add this module to your Puppetfile:

mod 'shinesolutions-amazon_ssm_agent', '1.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add shinesolutions-amazon_ssm_agent
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install shinesolutions-amazon_ssm_agent --version 1.1.0

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

shinesolutions/amazon_ssm_agent — version 1.1.0 Jul 12th 2022

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'
}