Maciej Walkowiak e7ac5a8121 Prepare for 3.0 development (#252) | 2 năm trước cách đây | |
---|---|---|
.. | ||
bin | 2 năm trước cách đây | |
lib | 3 năm trước cách đây | |
README.md | 2 năm trước cách đây | |
cdk.json | 3 năm trước cách đây | |
jest.config.js | 3 năm trước cách đây | |
package-lock.json | 2 năm trước cách đây | |
package.json | 2 năm trước cách đây | |
tsconfig.json | 3 năm trước cách đây |
Infrastructure code to run Spring Cloud AWS Parameter Store Sample App based on AWS CDK
npm install
npm run cdk synth
npm run cdk deploy
Once you don't need the infrastructure anymore, it can be destroyed by calling:
npm run cdk destroy
.You will need following policies to run cdk and Sample app: (Ideally this should be two different policies. One just for ssm and another for cloudFormations. For sake of sample and simplicity we will use one.)
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ssm:PutParameter",
"ssm:DeleteParameter",
"ssm:GetParametersByPath",
"ssm:AddTagsToResource",
"cloudformation:DescribeStackEvents",
"cloudformation:GetTemplate",
"cloudformation:DeleteStack",
"cloudformation:CreateChangeSet",
"cloudformation:DescribeChangeSet",
"cloudformation:ExecuteChangeSet",
"cloudformation:DescribeStacks"
],
"Resource": "*"
}
]
}