Skip to main content

Jinja2 rendering tool

Project description

j2rt is a tool meant to simplify Jinja2 usage for CLI, be that with shell scripts, continuous integration pipelines or anything else, where m4 is not a good fit, with all the whistles and bells that Jinja2 offers, if statements, for loops, filters and many more, see Jinja2’s syntax for list of features. The tool can take template and variable files from local filesystem as well as remote like S3 and SSM. The S3 integration makes it easy to create a secure secrets store for your configuration files, since S3 can be encrypted (KMS or regular server side AES), it’s viable to place secrets.json in S3 and then load it during deployment process for the configuration files to be generated, as one of use cases.

Multiple variable files can be used, in a way that one can, for example, specify one base variables file, and then append some keys, or override others, if needed.

Python dependencies

  • jinja2

  • boto3 (optional, provides support for s3:// and ssm://)

  • python-gnupg (optional, used with gpg_decrypt jinja2 filter)

Custom filters

Filters that are supported but are not part of official Jinja2 specification

  • b64decode - decode base64 encoded string into it’s original form.

  • b64encode - encode string into base64.

  • gpg_decrypt - decrypt string with GnuPG

Installation

From PYPI:

pip install j2rt

From master branch:

pip install https://github.com/slashbeast/j2rt/archive/master.zip

Note: it’s generally unwise to install packages with pip outside of virtualenv, if however this is what you want, append --user to the pip invocation to install it locally for logged user only.

Usage

The template and variable file(s) can be either local, or remote s3, if prefixed with s3://. Template is to be written in jinja2 and variable files are to be JSON formatted. One or more variable files can be specified, the same variable can be set in multiple variable files, the last one to be defined will be used.

usage: j2rt [-h] -t TEMPLATE_FROM [-v VARIABLES_FROM] [-V VARIABLE]
            [-o OUTPUT] [--version]

optional arguments:
  -h, --help            show this help message and exit
  -t TEMPLATE_FROM, --template-from TEMPLATE_FROM
                        Path to template file to use
  -v VARIABLES_FROM, --variables-from VARIABLES_FROM
                        The path(s) for JSON files from which variables will
                        be taken from, if variable in file is already defined,
                        it will be overwritten.
  -V VARIABLE, --variable VARIABLE
                        Set variable from command line, in the format
                        name=value, prefix value with @ to read file into
                        variable, one can escape @ by writting it as @@foo for
                        @foo value. Variables specified at command line have
                        highest priority and will overrride the same variable
                        set in any of --variables-from.
  -o OUTPUT, --output OUTPUT
                        Output file, if not set, result is printed to stdout.
  --version             Show version and exit

Examples

Generate nginx.conf

j2rt \
  -t s3://somebucket/nginx.conf.j2 \
  -v /etc/nginx.conf.base.json -v s3://somebucket/nginx.conf.webserver.json \
  -V base_domain=@ssm:///config/basedomain
  >/etc/nginx.conf

(Re)generate configuration for all the nginx’s vhosts

true >/etc/nginx/conf.d/vhosts.conf && \
for vhost in vhosts/*.json; do
  j2rt -t nginx.vhost.conf.j2 -v "$vhost" >>/etc/nginx/conf.d/vhosts.conf
done && nginx -s reload

Generate .env with production configuration and secrets, taking secrets from (encrypted) S3 bucket.

j2rt \
  -t .env.j2 \
  -v .env.base.json -v .env.prod.json -v s3://somebucket/.env.prod.secrets.json \
  -o .env

Generate OpenVPN client config file, taking CA.crt from S3 bucket, while client certificate and other keys taken from local file system:

j2rt \
  --template-from /etc/openvpn/client.ovpn.j2 \
  --variables-from /etc/openvpn/base_configuration_subnets_routing_tables_etc.json \
  --variable server_name=TEST_SERVER \
  --variable CA_CRT=@s3://somebucket/ca.crt \
  --variable client_crt=@/path/to/pki/certs/client1.crt \
  --variable client_key=@/path/to/pki/keys/client1.key \
  --variable ta_key=@/etc/openvpn/ta.key \
  -o /root/client1.ovpn

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

j2rt-0.2.0.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

j2rt-0.2.0-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file j2rt-0.2.0.tar.gz.

File metadata

  • Download URL: j2rt-0.2.0.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.7rc1

File hashes

Hashes for j2rt-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c8afa25ffe2a5c1990593fbf18847952e0bcec6997768c3cad339535c213e7f4
MD5 c807834974008627adf7c0910e291455
BLAKE2b-256 c92c39e28587e7e89d1b285b0f4ece1c44c98c9d08b175451bc3083980857e49

See more details on using hashes here.

File details

Details for the file j2rt-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: j2rt-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.7rc1

File hashes

Hashes for j2rt-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a028d2ea3373f9b5be4763443e0f905440bc68924820ea1d27e55ff8cdcb969b
MD5 33a9fa2e0c12e07ad2c76eab27d47a12
BLAKE2b-256 55350041ba0a6049f9738867dd8c85d5b134bc7c1ab5eacf5f0d4a811dd57c60

See more details on using hashes here.

Supported by

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