14 lines
303 B
Bash
14 lines
303 B
Bash
#!/bin/bash
|
|
|
|
export DEPLOY_API_KEY="deploy_key_xK9mP2sL7nQ4wE8r"
|
|
|
|
SSH_PASSWORD="ProdServerP@ss123!"
|
|
DATABASE_PASSWORD="DbProdP@ssw0rd!2024"
|
|
|
|
export DB_PASSWORD="${DATABASE_PASSWORD}"
|
|
export API_KEY="${API_KEY:-default_value}"
|
|
|
|
AWS_ACCESS_KEY="AKIAI12345678EXAMPLE"
|
|
|
|
echo "Deploying with credentials..."
|