Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alma-cdk/cross-region-parameter

Store SSM Parameter into another AWS Region with AWS CDK
https://github.com/alma-cdk/cross-region-parameter

aws aws-cdk aws-cdk-construct cdk cross-region paramater ssm

Last synced: about 2 months ago
JSON representation

Store SSM Parameter into another AWS Region with AWS CDK

Awesome Lists containing this project

README

        







Alma CDK Cross-Region Parameter




```sh
npm i -D @alma-cdk/cross-region-parameter
```

Store [AWS SSM Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html) Parameters into another AWS Region with AWS CDK.





![diagram](assets/diagram.svg)


## 🚧   Project Stability

![experimental](https://img.shields.io/badge/stability-experimental-yellow "Stability: Experimental")

This construct is still versioned with `v0` major version and breaking changes might be introduced if necessary (without a major version bump), though we aim to keep the API as stable as possible (even within `v0` development). We aim to publish `v1.0.0` soon and after that breaking changes will be introduced via major version bumps.


## Getting Started

```ts
import { CrossRegionParameter } from "@alma-cdk/cross-region-parameter";

new CrossRegionParameter(this, 'SayHiToSweden', {
region: 'eu-north-1',
name: '/parameter/path/message',
description: 'Some message for the Swedes',
value: 'Hej då!',
});
```