Python app to load SSM
Project description
ssm-loader
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.1.tar.gz
(3.8 kB
view details)
Built Distribution
File details
Details for the file ssm-loader-0.2.1.tar.gz
.
File metadata
- Download URL: ssm-loader-0.2.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75ac4676a6eb3bdf1ce7ba090ff2711ef2f15be2554833e1f61a6892b0b00161 |
|
MD5 | 01629775d21088ba983e1edf6ca55c87 |
|
BLAKE2b-256 | ae3bddbde7e15ead3e3bb96c6714d77fcc51c30d2ae3d3061e307ea045be2d70 |
File details
Details for the file ssm_loader-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: ssm_loader-0.2.1-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05cc30437440199c2cc86e3afecd6fa51861ee28269df4aceca1ab82951c3ba8 |
|
MD5 | cdab05452fbac6d2c104fd4498b22887 |
|
BLAKE2b-256 | 49d18126e612768571bceb9c59712098e6d207641fc934dea257e1b644f04c2f |