npm i -D @alma-cdk/cross-region-parameter
🚧 Project Stability
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å!',
});