Skip to main content

CLI for rendering configuration templates with SSM Parameter Store as a data source

Project description

SSM Parameter Store Template

Command line application to render templates with data from SSM Parameter Store

Installation

The ssm-ps-template application is available via the Python Package Index and can be installed with pip:

pip install ssm-ps-template

Templating

The application uses Jinja2 for the templating engine.

Configuration

The configuration file provides the ability to specify multiple templates, override AWS configuration, and change logging levels:

Top-Level Configuration Directives

Directive Description
templates An array of template directives as detailed in the next table.
profile Specify the AWS profile to use. If unspecified will default to the AWS_DEFAULT_PROFILE environment variable or is unspecified
region Specify the AWS region to use. If unspecified it will default to the AWS_DEFAULT_REGION environment variable or is unspecified
verbose Turn debug logging on. Possible values are true and false

Template Configuration Directives

The templates directive in the configuration is an array of objects, defined by a source and destination.

Directive Description
source The source file of the template
destination The destination path to write the rendered template to
prefix The prefix to prepend variables with if they do not start with a forward-slash (/)

Extended Templating Functionality

In addition to the base functionality exposed by Jinja2, the following Python functions have been added:

Function Definition
urlparse The urllib.parse.urlparse function from the Python standard library.
parse_qs The urllib.parse.parse_qs function from the Python standard library.
unquote The urllib.parse.unquote function from the Python standard library.

The following filters are added:

Filter Description
toyaml Converts a dictionary value to YAML

The following variables are exposed:

Variable Definition
environ The os.environ dictionary for accessing environment variables

Configuration File Format

The application supports JSON, TOML, or YAML for configuration. The following example is in YAML:

Example Configuration File

templates:
  - source: /etc/ssm-templates/nginx-example
    destination: /etc/nginx/sites-available/example
    prefix: /namespaced/application/nginx/
  - source: /etc/ssm-templates/postgres-example
    destination: /etc/postgresql/14/main/postgresql.conf
    prefix: /namespaced/application/postgres/
profile: default
region: us-east-1
verbose: false

Path Based Dictionaries

In more complex templates it's possible to need a dictionary of values from SSM instead of straight key/value usage.

This is achieved by setting a variable to a key with a trailing slash (/).

The following pattern will retrieve all keys under a path and return them as a nested dictionary with a / delimiter, and then iterate over the key/value pairs:

{% set values = settings/ %}
{% for key, value in settings.items() %}
  {{ key }}: {{ value }}
{% endfor %}

Or to convert them to YAML:

settings: {% set values = settings/ %}
{{ values | toyaml | indent(2, first=True) }}

Command Line Usage

usage: ssm-ps-template [-h] [--aws-profile AWS_PROFILE] [--aws-region AWS_REGION] [--prefix] [--verbose] config
Templating for SSM Parameter Store

positional arguments:
  config

optional arguments:
  -h, --help            show this help message and exit
  --aws-profile AWS_PROFILE
                        AWS Profile
  --aws-region AWS_REGION
                        AWS Region
  --prefix              Default SSM Key Prefix
  --verbose

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ssm-ps-template-1.0.0b2.tar.gz (12.1 kB view details)

Uploaded Source

Built Distribution

ssm_ps_template-1.0.0b2-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file ssm-ps-template-1.0.0b2.tar.gz.

File metadata

  • Download URL: ssm-ps-template-1.0.0b2.tar.gz
  • Upload date:
  • Size: 12.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ssm-ps-template-1.0.0b2.tar.gz
Algorithm Hash digest
SHA256 da9b765fc152cb57bf6b7929943264ec78805213e4b6ffec21e8cac76457d027
MD5 7717152a972dd0336e6aaa910985a2cb
BLAKE2b-256 f5f23a363554795821b98f8b2f0a06f01f8be2468f51c4ea2b8435e853ec84e3

See more details on using hashes here.

File details

Details for the file ssm_ps_template-1.0.0b2-py3-none-any.whl.

File metadata

File hashes

Hashes for ssm_ps_template-1.0.0b2-py3-none-any.whl
Algorithm Hash digest
SHA256 7984e5c22bd11f779b29fdcd502d9e25861e170029079dd4a0ab50aab4fe9ca6
MD5 902f3de9887b76020e14c15528ff4a12
BLAKE2b-256 80bfd21f0008c2ed07eb3038f4164b1dfb506098c6a3cd66a08a5822a7744ffe

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page