Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shinesolutions/puppet-amazon-ssm-agent
Puppet Module for provisioning AWS Systems Manager Agent
https://github.com/shinesolutions/puppet-amazon-ssm-agent
aws puppet puppet-module ssm the-works
Last synced: 3 months ago
JSON representation
Puppet Module for provisioning AWS Systems Manager Agent
- Host: GitHub
- URL: https://github.com/shinesolutions/puppet-amazon-ssm-agent
- Owner: shinesolutions
- License: apache-2.0
- Created: 2017-04-04T05:01:42.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T03:03:35.000Z (11 months ago)
- Last Synced: 2024-09-27T20:03:21.674Z (3 months ago)
- Topics: aws, puppet, puppet-module, ssm, the-works
- Language: Puppet
- Homepage:
- Size: 74.2 KB
- Stars: 2
- Watchers: 11
- Forks: 14
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://github.com/shinesolutions/puppet-amazon-ssm-agent/workflows/CI/badge.svg)](https://github.com/shinesolutions/puppet-amazon-ssm-agent/actions?workflow=CI)
[![Published Version](https://img.shields.io/puppetforge/v/shinesolutions/amazon_ssm_agent.svg)](http://forge.puppet.com/shinesolutions/amazon_ssm_agent)
[![Downloads Count](https://img.shields.io/puppetforge/dt/shinesolutions/amazon_ssm_agent.svg)](http://forge.puppet.com/shinesolutions/amazon_ssm_agent)
[![Known Vulnerabilities](https://snyk.io/test/github/shinesolutions/puppet-amazon-ssm-agent/badge.svg)](https://snyk.io/test/github/shinesolutions/puppet-amazon-ssm-agent)Puppet AEM Resources
--------------------A Puppet module for provisioning [AWS Systems Manager](https://aws.amazon.com/systems-manager/) agent.
Learn more about Puppet AEM Resources:
* [Installation](https://github.com/shinesolutions/puppet-amazon-ssm-agent#installation)
* [Usage](https://github.com/shinesolutions/puppet-amazon-ssm-agent#usage)
* [Upgrade](https://github.com/shinesolutions/puppet-amazon-ssm-agent#upgrade)
* [Testing](https://github.com/shinesolutions/puppet-amazon-ssm-agent#testing)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'
}