Skip to content

alma-cdk/cross-region-parameter

Repository files navigation



Alma CDK Cross-Region Parameter

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

Store AWS SSM Parameter Store Parameters into another AWS Region with AWS CDK.



diagram


🚧   Project 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

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å!',
});