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 | |
usage() | |
{ | |
echo "Description: this script is used for scaling databases of r3 size only. can be altered make sure to have the rds cli installed"; | |
echo "-e (Required Field) Specify the environment you want to scale Ex: perf | performance, stag | staging, sand | sandbox, or prod | production "; | |
echo "-i Shows information for the environment"; | |
echo "-s Scale to specified instance default = large. Ex: l | large, xl | xlarge, 2xl | 2xlarge, 4xl | 4xlarge, or 8xl | 8xlarge"; | |
echo ""; | |
echo "E.g. usage:"; |