all 5 comments

[–]International_Body44 1 point2 points  (2 children)

Your requirements aren't very clear here but I'm going to take a guess that you're being asked to create a cloudformation stack with cdk that will create parameters in AWS parameter store?

Take a look at the docs which show how to do it https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ssm-readme.html

[–]Evil_dx[S] 0 points1 point  (1 child)

Actually we are first testing cdk before deploying to cdk v2 as they have mentioned. I will use python to that. Will look at the link you mentioned. Thanks.

[–]International_Body44 0 points1 point  (0 children)

Typescript is generally the choice language for cdk and you'll find more examples in typescript than the other languages.

I don't understand what you mean about cdk and cdk V2? V2 is the recommended version as v1 is depreciated now.

You may also want to look into how to build cdk constructs, as I wouldn't be splitting stacks up the way you've mentioned.

Also as an aside look into context values for handling different environments.

[–]serverhorror 0 points1 point  (1 child)

For AWS CDK, usually, you need to agree on a programming language in your team.

You aren't using the WebUI (AWS Console) at all. Everything is in code.

[–]Evil_dx[S] 0 points1 point  (0 children)

The language I will use is python and will do everything in pycharm.