[Solved] Creating IAM user via terraform and upload the secret key and access key in S3 bucket

I want to point out that storing tokens in s3 can be dangerous, if not configured correctly. Make sure that you have understood how policies in AWS and access control in s3 works!. https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html With that out of the way, this is what I have come up with: # The user to which we will … Read more

[Solved] How bootstrap decide what should be made?

Bootstrapping does not depend on the stacks you’re deploying, it’s the same for everyone by default. You can specify your own template, but that’s for advanced usage. The documentation lays out the purposes of bootstrapping pretty clearly: Deploying AWS CDK apps into an AWS environment (a combination of an AWS account and region) may require … Read more

[Solved] AWS Dev env setup with Gradle

The = operator invokes the set<Field> method in Groovy. This is the reason why the classpath of the runDynamoDB task only contains a single file. You should use the classpath(Object… paths) which appends to the classpath: Change the line to the following example to add the file to the default classpath: classpath files(…) // without … Read more