github-codespace

This is a codespace template for general AWS CDK development in GitHub Codespace.

public dockder image for this codespace:

public.ecr.aws/pahudnet/github-codespace:latest

Create AWS CDK App

npx projen new awscdk-app-ts

Create AWS CDK Construct Lib

npx projen new awscdk-construct

Configure AWS CLI V2 with AWS SSO

aws configure sso --profile default

The following example generate the SSO profile with default as the profile name:

$ aws configure sso --profile default
SSO start URL [None]: https://pahud-sso.awsapps.com/start                                                                                                                               
SSO Region [None]: us-east-1                                                                                                                                                            
Attempting to automatically open the SSO authorization page in your default browser.
If the browser does not open or you wish to use a different device to authorize this request, open the following URL:

https://device.sso.us-east-1.amazonaws.com/

Then enter the code:

DJHN-QKRK
The only AWS account available to you is: 123456789012
Using the account ID 123456789012
The only role available to you is: AdministratorAccess
Using the role name "AdministratorAccess"
CLI default client Region [None]: ap-northeast-1                                                                     
CLI default output format [None]:                                                                                    

To use this profile, specify the profile name using --profile, as shown:

aws s3 ls --profile default        

Validate the Identity with AWS CLI

$ aws sts get-caller-identity

Start your CDK development

You should be able to run the CDK CLI now.

$ cdk diff
$ cdk deploy
$ cdk destroy