Skip to main content

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


Download files

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

Source Distribution

s3-to-sftp-1.0.1.tar.gz (22.2 kB view hashes)

Uploaded Source

Built Distribution

s3_to_sftp-1.0.1-py3-none-any.whl (34.7 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