- Login to your AWS account
- Run
make deployto deploy the resource. The newly created resource will be set as default version. - Start using
RP::SSM::SecureParameterin your CF and have fun.
All basic operations CREATE, UPDATE, DELETE are supported.
AWSTemplateFormatVersion: 2010-09-09
Description: 'Sample CF for Secure SSM'
Resources:
SampleSecureSSMParam:
Type: RP::SSM::SecureParameter
Properties:
Description: "Sample secure ssm"
Name: "/sample/secure/ssm"
Value: "another value"
KeyId: "alias/aws/ssm"
Tags:
- Key: "key"
Value: "value"The below commands can be used for testing as per docs
sam local invoke TestEntrypoint --event sam-tests/create.json
sam local invoke TestEntrypoint --event sam-tests/delete.json