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
echo "Enter the name for your cluster" | |
read CLUSTER_NAME; | |
echo "Enter the cloud (aws, azure, gcp)" | |
read CLOUD; | |
echo "Enter the region" | |
read REGION; | |
echo "Enter the geo location (us for now)" | |
read GEO; |
OlderNewer