Airflow
How to connect UltiHash to Airflow
# Check that these packages are installed
pip3 install 'apache-airflow[amazon]'
pip3 install apache-airflow-providers-amazon
# Create the connection between Airflow and UltiHash
airflow connections add 'ultihash' --conn-json '{
"conn_type": "aws",
"login": "ACCESS_KEY_ID",
"password": "AWS_SECRET_KEY",
"extra": {
"endpoint_url": "<endpoint-url>",
"verify": "False",
"service_config": {
"s3": {
"endpoint_url": "<endpoint-url>"
}
}
}
}'
# The output should be:
# Successfully added `conn_id`=ultihash : aws://ACCESS_KEY_ID:******@: Last updated
Was this helpful?