From a55b215d24d5a85a06bb3976b044c93313daf168 Mon Sep 17 00:00:00 2001 From: emile baizel Date: Wed, 7 Feb 2024 09:12:05 -0500 Subject: [PATCH] Update setup-cloud9.md 1/ update node to use v18 2/ fix `us-east-2` to `us-east-1` to match the comments around a sample configuration Signed-off-by: emile baizel --- docs/setup-cloud9.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/setup-cloud9.md b/docs/setup-cloud9.md index 33c0b971..544bbdbe 100644 --- a/docs/setup-cloud9.md +++ b/docs/setup-cloud9.md @@ -84,15 +84,15 @@ After arranging your environment windows, you'll want to install and update some ```bash sudo pip install awscli --upgrade sudo yum install -y jq -aws configure set default.region us-east-2 +aws configure set default.region us-east-1 ``` Install NodeJS v18 and set as the default version ```bash -nvm install 16 -nvm use 16 -nvm alias default 16 +nvm install 18 +nvm use 18 +nvm alias default 18 ``` The AWS CDK includes the CDK Toolkit (also called the CLI), a command line tool for working with your AWS CDK apps and stacks. Install the CDK toolkit