infrastructure-stack.ts 386 B

12345678910111213
  1. import * as cdk from '@aws-cdk/core';
  2. import * as ssm from '@aws-cdk/aws-ssm';
  3. export class InfrastructureStack extends cdk.Stack {
  4. constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
  5. super(scope, id, props);
  6. new ssm.StringParameter(this, 'Parameter', {
  7. parameterName: '/config/spring/message',
  8. stringValue: 'Spring-cloud-aws value!'
  9. });
  10. }
  11. }