This is a workspace template for general AWS CDK development in Gitpod.
Click this button below to open a fresh new CDK development workspace in Gitpod
npx projen new awscdk-app-ts
npx projen new awscdk-construct
aws configure sso
The following example generate the SSO profile with default
as the profile name:
$ aws configure sso --profile default
SSO start URL [None]: https://kenkutok.awsapps.com/start
SSO Region [None]: ap-northeast-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
$ bash utils/refresh_credentials.sh
=> requesting temporary credentials
=> updating ~/.aws/credentials as profile default
[OK] done
Check identity:
$ aws sts get-caller-identity
If you have different SSO profile name, run it with AWS_PROFILE
:
$ AWS_PROFILE=<OTHER_PROFILE_NAME> bash utils/refresh_credentials.sh
You should be able to run the CDK CLI now.
$ cdk diff
$ cdk deploy
$ cdk destroy