Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 482 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 482 Bytes

DevOps

template-diagram

aws cloudformation create-stack \
  --template-body "$(cat vpc.json)" \
  --parameters "$(cat parameters.json)" \
  --stack-name "$(whoami)"
aws cloudformation update-stack \
  --template-body "$(cat vpc.json)" \
  --parameters "$(cat parameters.json)" \
  --stack-name "$(whoami)"
aws cloudformation delete-stack \
  --stack-name "$(whoami)"