Rafael Pestano e5411837c6 Adds array properties support to parameter store (#248) %!s(int64=2) %!d(string=hai) anos
..
bin b01ae16049 Fix samples (#43) %!s(int64=3) %!d(string=hai) anos
lib e5411837c6 Adds array properties support to parameter store (#248) %!s(int64=2) %!d(string=hai) anos
README.md 210636ff38 Upgrade CDK to 1.143.0. (#226) %!s(int64=2) %!d(string=hai) anos
cdk.json 288a32efd4 Parameter Store Sample (#17) %!s(int64=3) %!d(string=hai) anos
jest.config.js 288a32efd4 Parameter Store Sample (#17) %!s(int64=3) %!d(string=hai) anos
package.json 210636ff38 Upgrade CDK to 1.143.0. (#226) %!s(int64=2) %!d(string=hai) anos
tsconfig.json 288a32efd4 Parameter Store Sample (#17) %!s(int64=3) %!d(string=hai) anos

README.md

Spring Cloud AWS Parameter Store Sample App Infrastructure

Infrastructure code to run Spring Cloud AWS Parameter Store Sample App based on AWS CDK

How to install

  • npm install

How to run

  • 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": "*" } ] }