Skip to main content

Python app to load SSM

Project description

ssm-loader

Build codecov.io PyPI LICENSE

This project aims to help dump and load AWS SSM parameters.

Usage Example

# One .json file will be generated in your local with all variables
ssm dump "/app/myapp/app-path"

# All variables described will be inputed inside the IAM configured
ssm load -f ssm.json

Dependencies

  • Docker

Load file format

The file to use the ssm load command should be in this format.

{
    "parameters": [
        {
            "Name": "param1",
            "Value": "value1"
        }
    ]
}

Docker

Build

Now you are ready to build an image from this project Dockerfile.

docker build -t ssm .

Run

After your image has been built successfully, you can run it as a container. In your terminal, run the command docker images to view your images.

# Dump
docker run -rm \
    -e AWS_REGION='ap-southeast-2' \
    -e AWS_ACCESS_KEY_ID='<your-access-key-id>' \
    -e AWS_SECRET_ACCESS_KEY='<your-secret-access-key>' \
    ssm dump "/app/myapp/app-path"

# Loading
docker run -rm \
    -e AWS_REGION='ap-southeast-2' \
    -e AWS_ACCESS_KEY_ID='<your-access-key-id>' \
    -e AWS_SECRET_ACCESS_KEY='<your-secret-access-key>' \
    ssm load -f ssm.json

Setup development environment

Install dependencies

make build

Run

make run

Test

make test

Lint Flake8

make flake8

Author

App managed by DNX Solutions.

License

Apache 2 Licensed. See LICENSE for full details.

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-loader-0.2.4.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

ssm_loader-0.2.4-py3-none-any.whl (8.6 kB view hashes)

Uploaded Python 3

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