Created
April 12, 2019 18:47
-
-
Save crizstian/1ef05ef0b74866581ed33829e770bbca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script is meant to be run in the User Data of each EC2 Instance while it's booting. | |
set -e | |
# Send the log output from this script to user-data.log, syslog, and the console | |
exec > >(tee /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1 | |
echo "export DB_ADMIN_USER=${dbAdminUser}" >> /etc/environment | |
echo "export DB_ADMIN_PASS=${dbAdminUserPass}" >> /etc/environment | |
echo "export DB_REPLICA_ADMIN=${dbReplicaAdmin}" >> /etc/environment | |
echo "export DB_REPLICA_ADMIN_PASS=${dbReplicaAdminPass}" >> /etc/environment | |
echo "export DB_REPLSET_NAME=${dbReplSetName}" >> /etc/environment | |
echo "export AWS_ACCESS_KEY_ID=${access_key}" >> /etc/environment | |
echo "export AWS_SECRET_ACCESS_KEY=${secret_key}" >> /etc/environment | |
echo "export AWS_DEFAULT_REGION=${region}" >> /etc/environment | |
sudo service mongo start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment