S3 to SFTP application / watcher. Feeds from S3 to SQS notifications.
Project description
Simple application that listens on a SQS Queue and transfers files from S3 to a SFTP Server.
The authentication can be done via username/password or username/private key. Private key should be stored “as-is” in AWS Secrets Manager.
The container must have an environment variable SFTP_TARGET, that follows the format below. You can set an enviroment variable for each of the below, using the property name as environment variable name.
The value in environment variables overrides the values otherwise set.
Build
You can build the docker image with the following commands
docker build . -t s3-to-sftp
Alternatively, using docker-compose
docker-compose build
Deploy with ECS Compose-X
We highly recommend that you store the value for SFTP_TARGET in AWS Secrets Manager.
Install compose-x
python3 -m venv compose-x
source compose-x/bin/activate
pip install pip -U; pip install ecs-composex
Deploy
You might need to update the settings in the aws.yaml file to meet your environment settings. On start, the connection to the SFTP server is not established, so the deployment won’t fail because of that. However, it requires to have the SFTP_TARGET details setup in before it starts listening on the SQS queue jobs.
ecs-compose-x up -d templates -f docker-compose.yaml -f aws.yaml -p s3-to-sftp-testing
Monitoring
In AWS CloudWatch, you will see new metrics in a Namespace called S3ToSFTP which is going to have some metrics, here for statistics.
These metrics are published using EMF.
SFTP_TARGET format
{
"$schema": "http://json-schema.org/draft-07/schema#",
"id": "sftp-secret-format",
"type": "object",
"additionalProperties": false,
"properties": {
"host": {
"type": "string",
"format": "idn-hostname"
},
"port": {
"type": "number",
"minimum": 1,
"maximum": 65535
},
"username": {
"type": "string"
},
"password": {
"type": "string"
},
"default_path": {
"type": "string"
},
"private_key": {
"type": "string"
},
"private_key_pass": {
"type": "string"
}
},
"required": [
"host",
"port",
"username"
]
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for s3_to_sftp-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f312324f89e1051a394af813fde3ef7867c89a6050f0a661e2621a028802d1a2 |
|
MD5 | b192ce5df134077bdf7036898c878551 |
|
BLAKE2b-256 | be6f4d23399ac0447b178b60fff509e10969ceaaf02fce0c5432a9fe7f4aa16b |