console.sh - Test bucket creation and copying file
BUCKET_NAME=qwiklab_practice_2
gsutil mb gs://${BUCKET_NAME}
gsutil mb gs;//qwik_storage_lab
MY_FILE=my_file.txt
touch ${MY_FILE}
echo 'This is the file with lot of data' > ${MY_FILE}
gsutil cp ${MY_FILE} gs://${BUCKET_NAME}
#Creating infrastructure with project setting
gcloud compute regions list
INFRACLASS_REGION=us-central1
echo $INFRACLASS_REGION
mkdir infraclass
touch infraclass/config
echo INFRACLASS_REGION=$INFRACLASS_REGION >> ~/infraclass/config
INFRACLASS_PROJECT_ID=qwiklabs-gcp-2012a6dc1601a430
echo INFRACLASS_PROJECT_ID=$INFRACLASS_PROJECT_ID >> ~/infraclass/config
source infraclass/config
echo $INFRACLASS_PROJECT_ID
echo 'source infraclass/config' >> .profile
source infraclass/config
echo $INFRACLASS_PROJECT_ID