Skip to content

Commit

Permalink
Create cloudshell-setup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
johnculkin authored Apr 18, 2023
1 parent a473919 commit 983b958
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cloudshell-setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#Set your AWS ACCOUNT ID by parsing output from the aws sts get-caller-identity operation.
AWS_ACCOUNT_ID=$(aws sts get-caller-identity \
--query Account --output text)

#Create a folder called AWSCookbook abd cd into it
test -d AWSCookbook || mkdir AWSCookbook
cd AWSCookbook

#Example: Checkout Chapter repos
test -d Security || git clone https://github.com/AWSCookbook/Security

0 comments on commit 983b958

Please sign in to comment.