2.74.0 • Published 8 months ago

@aws-solutions-constructs/aws-fargate-ssmstringparameter v2.74.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 months ago

aws-fargate-ssmstringparameter module


Stability: Experimental

All classes are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.


Reference Documentation:https://docs.aws.amazon.com/solutions/latest/constructs/
LanguagePackage
Python Logo Pythonaws_solutions_constructs.aws_fargate_ssmstringparameter
Typescript Logo Typescript@aws-solutions-constructs/aws-fargate-ssmstringparameter
Java Logo Javasoftware.amazon.awsconstructs.services.fargatessmstringparameter

Overview

This AWS Solutions Construct implements an AWS Fargate service that can read/write to an AWS Systems Manager String Parameter

Here is a minimal deployable pattern definition:

Typescript

import { Construct } from 'constructs';
import { Stack, StackProps } from 'aws-cdk-lib';
import { FargateToSsmstringparameter, FargateToSsmstringparameterProps } from '@aws-solutions-constructs/aws-fargate-ssmstringparameter';

const constructProps: FargateToSsmstringparameterProps = {
  publicApi: true,
  ecrRepositoryArn: "arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo",
  stringParameterProps: { stringValue: "test-string-value" }
};

new FargateToSsmstringparameter(stack, 'test-construct', constructProps);

Python

from aws_solutions_constructs.aws_fargate_ssmstringparameter import FargateToSsmstringparameter, FargateToSsmstringparameterProps
from aws_cdk import (
    Stack,
    aws_ssm as ssm
)
from constructs import Construct

FargateToSsmstringparameter(self, 'test_construct',
            public_api=True,
            ecr_repository_arn="arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo",
            string_parameter_props=ssm.StringParameterProps(
              string_value="test-string-value"))

Java

import software.constructs.Construct;

import software.amazon.awscdk.Stack;
import software.amazon.awscdk.StackProps;
import software.amazon.awscdk.services.ssm.*;
import software.amazon.awsconstructs.services.fargatessmstringparameter.*;

new FargateToSsmstringparameter(this, "test-construct", new FargateToSsmstringparameterProps.Builder()
        .publicApi(true)
        .ecrRepositoryArn("arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo")
        .stringParameterProps(new StringParameterProps.Builder()
                        .stringValue("test-string-value")
                        .build())
        .build());

Pattern Construct Props

NameTypeDescription
publicApibooleanWhether the construct is deploying a private or public API. This has implications for the VPC.
vpcProps?ec2.VpcPropsOptional custom properties for a VPC the construct will create. This VPC will be used by any Private Hosted Zone the construct creates (that's why loadBalancerProps and privateHostedZoneProps can't include a VPC). Providing both this and existingVpc is an error.
existingVpc?ec2.IVpcAn existing VPC in which to deploy the construct. Providing both this and vpcProps is an error. If the client provides an existing load balancer and/or existing Private Hosted Zone, those constructs must exist in this VPC.
clusterProps?ecs.ClusterPropsOptional properties to create a new ECS cluster. To provide an existing cluster, use the cluster attribute of fargateServiceProps.
ecrRepositoryArn?stringThe arn of an ECR Repository containing the image to use to generate the containers. Either this or the image property of containerDefinitionProps must be provided. format: arn:aws:ecr:region:account number:repository/Repository Name
ecrImageVersion?stringThe version of the image to use from the repository. Defaults to 'Latest'
containerDefinitionProps?ecs.ContainerDefinitionProps \| anyOptional props to define the container created for the Fargate Service (defaults found in fargate-defaults.ts)
fargateTaskDefinitionProps?ecs.FargateTaskDefinitionProps \| anyOptional props to define the Fargate Task Definition for this construct (defaults found in fargate-defaults.ts)
fargateServiceProps?ecs.FargateServiceProps \| anyOptional values to override default Fargate Task definition properties (fargate-defaults.ts). The construct will default to launching the service is the most isolated subnets available (precedence: Isolated, Private and Public). Override those and other defaults here.
existingFargateServiceObject?ecs.FargateServiceA Fargate Service already instantiated (probably by another Solutions Construct). If this is specified, then no props defining a new service can be provided, including: ecrImageVersion, containerDefinitionProps, fargateTaskDefinitionProps, ecrRepositoryArn, fargateServiceProps, clusterProps
existingContainerDefinitionObject?ecs.ContainerDefinitionA container definition already instantiated as part of a Fargate service. This must be the container in the existingFargateServiceObject
existingStringParameterObj?ssm.StringParameterExisting instance of SSM String parameter object, providing both this and stringParameterProps will cause an error
stringParameterProps?ssm.StringParameterPropsOptional user provided props to override the default props for SSM String parameter. If existingStringParameterObj is not set stringParameterProps is required. The only supported ssm.StringParameterProps.type is STRING if a different value is provided it will be overridden.
stringParameterPermissions?stringOptional SSM String parameter permissions to grant to the Fargate service. One of the following may be specified: "Read", "ReadWrite".
stringParameterEnvironmentVariableName?stringOptional Name for the container environment variable set to the SSM parameter name. Default: SSM_STRING_PARAMETER_NAME

Pattern Properties

NameTypeDescription
vpcec2.IVpcThe VPC used by the construct (whether created by the construct or provided by the client)
serviceecs.FargateServiceThe AWS Fargate service used by this construct (whether created by this construct or passed to this construct at initialization)
containerecs.ContainerDefinitionThe container associated with the AWS Fargate service in the service property.
stringParameterssm.StringParameterReturns an instance of ssm.StringParameter created by the construct

Default settings

Out of the box implementation of the Construct without any override will set the following defaults:

AWS Fargate Service

  • Sets up an AWS Fargate service
    • Uses the existing service if provided
    • Creates a new service if none provided.
      • Service will run in isolated subnets if available, then private subnets if available and finally public subnets
    • Adds environment variables to the container with the ARN and Name of the SSM parameter
    • Add permissions to the container IAM role allowing it to read/write to the SSM parameter

AWS SSM String Parameter

  • Sets up an AWS SSM String Parameter
    • Uses an existing parameter if one is provided, otherwise creates a new one
  • Adds an Interface Endpoint to the VPC for SSM parameter (the service by default runs in Isolated or Private subnets)

Architecture

Architecture Diagram


© Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

2.74.0

8 months ago

2.73.0

8 months ago

2.72.0

8 months ago

2.71.0

9 months ago

2.69.0

9 months ago

2.68.0

10 months ago

2.67.0

10 months ago

2.67.1

10 months ago

2.70.0

9 months ago

2.64.0

11 months ago

2.60.0

1 year ago

2.63.0

11 months ago

2.59.0

1 year ago

2.62.0

11 months ago

2.58.0

1 year ago

2.58.1

1 year ago

2.65.0

10 months ago

2.61.0

11 months ago

2.57.0

1 year ago

2.56.0

1 year ago

2.55.0

1 year ago

2.54.1

1 year ago

2.54.0

1 year ago

2.53.0

1 year ago

2.52.1

1 year ago

2.52.0

1 year ago

2.51.0

1 year ago

2.50.0

1 year ago

2.49.0

1 year ago

2.48.0

1 year ago

2.47.0

2 years ago

2.46.0

2 years ago

2.43.0

2 years ago

2.45.0

2 years ago

2.43.1

2 years ago

2.42.0

2 years ago

2.44.0

2 years ago

2.41.0

2 years ago

2.40.0

2 years ago

2.38.0

2 years ago

2.39.0

2 years ago

2.37.0

2 years ago

2.32.0

2 years ago

2.34.0

2 years ago

2.36.0

2 years ago

2.31.0

2 years ago

2.33.0

2 years ago

2.35.0

2 years ago

2.30.0

2 years ago

2.29.0

3 years ago

1.181.0

3 years ago

2.27.0

3 years ago

1.181.1

3 years ago

1.174.0

3 years ago

1.178.0

3 years ago

1.176.0

3 years ago

2.28.0

3 years ago

1.180.0

3 years ago

2.26.0

3 years ago

1.177.0

3 years ago

1.175.0

3 years ago

1.179.0

3 years ago

2.25.0

3 years ago

2.24.0

3 years ago

1.167.0

3 years ago

1.169.0

3 years ago

1.168.0

3 years ago

2.19.0

3 years ago

2.17.0

3 years ago

2.18.0

3 years ago

1.170.0

3 years ago

2.16.0

3 years ago

2.21.0

3 years ago

1.173.0

3 years ago

1.172.0

3 years ago

2.23.0

3 years ago

2.20.0

3 years ago

1.171.0

3 years ago

1.170.1

3 years ago

2.22.0

3 years ago

1.163.0

3 years ago

2.11.0

3 years ago

1.162.0

3 years ago

2.12.0

3 years ago

1.161.0

3 years ago

1.160.0

3 years ago

2.10.0

3 years ago

1.166.1

3 years ago

1.165.0

3 years ago

1.163.2

3 years ago

2.9.0

3 years ago

1.164.0

3 years ago

1.163.1

3 years ago

2.13.0

3 years ago

2.14.0

3 years ago

1.157.0

3 years ago

1.158.0

3 years ago

1.159.0

3 years ago

2.8.0

3 years ago

1.156.1

3 years ago

1.156.0

3 years ago

1.155.0

3 years ago

2.7.0

3 years ago

1.154.0

3 years ago

2.6.0

3 years ago

1.153.1

3 years ago

1.153.0

3 years ago