aws_cdk_practice_tasks
aws_cdk_practice_tasks
aws_cdk_practice_tasks
BEGINNER
1. Install AWS CDK and Run Your First App:
- Install AWS CDK CLI and configure AWS credentials.
- Initialize a new CDK project with `cdk init app --language typescript` or your
preferred language.
- Deploy a basic stack that creates an S3 bucket.
INTERMEDIATE
6. Set Up a VPC with Subnets:
- Define a VPC with public and private subnets in a CDK stack.
- Verify the network structure in the AWS console.
ADVANCED
11. Integrate with Secrets Manager:
- Create a secret in Secrets Manager through CDK and use it in your Lambda
function.
- Verify that the Lambda can securely access and retrieve the secret.
12. Implement Cross-Stack References:
- Create two CDK stacks, one with shared resources (e.g., a VPC) and another
that uses it.
- Set up cross-stack references and deploy both stacks.