Last active
December 28, 2019 02:37
-
-
Save swaminator/7408de774e24ecf031d0d9928f1fbae5 to your computer and use it in GitHub Desktop.
The amplifyPush script
This file contains 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
#!/usr/bin/env bash | |
set -e | |
IFS='|' | |
help_output () { | |
echo "usage: amplify-push <--environment|-e <name>> <--simple|-s>" | |
echo " --environment The name of the Amplify environment to use" | |
echo " --simple Optional simple flag auto-includes stack info from env cache" | |
exit 1 | |
} | |
init_env () { | |
ENV=$1 | |
AMPLIFY=$2 | |
PROVIDERS=$3 | |
CODEGEN=$4 | |
AWSCONFIG=$5 | |
echo "# Start initializing Amplify environment: ${ENV}" | |
if [[ -z ${STACKINFO} ]]; | |
then | |
echo "# Initializing new Amplify environment: ${ENV} (amplify init)" | |
amplify init --amplify ${AMPLIFY} --providers ${PROVIDERS} --codegen ${CODEGEN} --yes; | |
echo "# Environment ${ENV} details:" | |
amplify env get --name ${ENV} | |
else | |
echo "STACKINFO="${STACKINFO} | |
echo "# Importing Amplify environment: ${ENV} (amplify env import)" | |
amplify env import --name ${ENV} --config "${STACKINFO}" --awsInfo ${AWSCONFIG} --yes; | |
echo "# Initializing existing Amplify environment: ${ENV} (amplify init)" | |
amplify init --amplify ${AMPLIFY} --providers ${PROVIDERS} --codegen ${CODEGEN} --yes; | |
echo "# Environment ${ENV} details:" | |
amplify env get --name ${ENV} | |
fi | |
echo "# Done initializing Amplify environment: ${ENV}" | |
} | |
ENV="" | |
IS_SIMPLE=false | |
POSITIONAL=() | |
while [[ $# -gt 0 ]] | |
do | |
key="$1" | |
case ${key} in | |
-e|--environment) | |
ENV=$2 | |
shift | |
;; | |
-r|--region) | |
REGION=$2 | |
shift | |
;; | |
-s|--simple) | |
IS_SIMPLE=true | |
shift | |
;; | |
*) | |
POSITIONAL+=("$1") | |
shift | |
;; | |
esac | |
done | |
set -- "${POSITIONAL[@]}" | |
# if no provided environment name, use default env variable, then user override | |
if [[ ${ENV} = "" ]]; | |
then | |
ENV=${AWS_BRANCH} | |
fi | |
if [[ ${USER_BRANCH} != "" ]]; | |
then | |
ENV=${USER_BRANCH} | |
fi | |
# Check valid environment name | |
if [[ -z ${ENV} || "${ENV}" =~ [^a-zA-Z0-9\-]+ ]] ; then help_output ; fi | |
AWSCONFIG="{\ | |
\"configLevel\":\"project\",\ | |
\"useProfile\":true,\ | |
\"profileName\":\"default\"\ | |
}" | |
AMPLIFY="{\ | |
\"envName\":\"${ENV}\"\ | |
}" | |
PROVIDERS="{\ | |
\"awscloudformation\":${AWSCONFIG}\ | |
}" | |
CODEGEN="{\ | |
\"generateCode\":false,\ | |
\"generateDocs\":false\ | |
}" | |
# Handle old or new config file based on simple flag | |
if [[ ${IS_SIMPLE} ]]; | |
then | |
echo "# Getting Amplify CLI Cloud-Formation stack info from environment cache" | |
export STACKINFO="$(envCache --get stackInfo)" | |
init_env ${ENV} ${AMPLIFY} ${PROVIDERS} ${CODEGEN} ${AWSCONFIG} | |
echo "# Store Amplify CLI Cloud-Formation stack info in environment cache" | |
STACKINFO="$(amplify env get --json --name ${ENV})" | |
envCache --set stackInfo ${STACKINFO} | |
echo "STACKINFO="${STACKINFO} | |
else | |
# old config file, above steps performed outside of this script | |
init_env ${ENV} ${AMPLIFY} ${PROVIDERS} ${CODEGEN} ${AWSCONFIG} | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This version of the script looked a little out of date, so I pulled the latest version and put it at https://gist.github.com/mdlavin/ba66ad5baf8fab87bdaca64ea22f3f05