Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 months ago
JSON representation
Store SSM Parameter into another AWS Region with AWS CDK
- Host: GitHub
- URL: https://github.com/alma-cdk/cross-region-parameter
- Owner: alma-cdk
- License: apache-2.0
- Created: 2022-03-14T08:34:32.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T22:11:20.000Z (5 months ago)
- Last Synced: 2024-12-03T07:16:42.440Z (2 months ago)
- Topics: aws, aws-cdk, aws-cdk-construct, cdk, cross-region, paramater, ssm
- Language: TypeScript
- Homepage: https://constructs.dev/packages/@alma-cdk/cross-region-parameter
- Size: 655 KB
- Stars: 6
- Watchers: 7
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-repos - alma-cdk/cross-region-parameter - Store SSM Parameter into another AWS Region with AWS CDK (TypeScript)
README
![]()
```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å!',
});
```