2.74.0 • Published 8 months ago

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

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

aws-fargate-opensearch 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_opensearch
Typescript Logo Typescript@aws-solutions-constructs/aws-fargate-opensearch
Java Logo Javasoftware.amazon.awsconstructs.services.fargateopensearch

Overview

This AWS Solutions Construct implements an AWS Fargate service that can write/read to an Amazon OpenSearch Service domain.

Here is a minimal deployable pattern definition:

Typescript

import { Construct } from 'constructs';
import { Stack, StackProps } from 'aws-cdk-lib';
import { FargateToOpenSearch, FargateToOpenSearchProps } from '@aws-solutions-constructs/aws-fargate-opensearch';

const constructProps: FargateToOpenSearchProps = {
  publicApi: true,
  ecrRepositoryArn: "arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo",
  openSearchDomainName: 'testdomain',
  // TODO: Ensure the Cognito domain name is globally unique
  cognitoDomainName: 'globallyuniquedomain' + Aws.ACCOUNT_ID
};

new FargateToOpenSearch(this, 'test-construct', constructProps);

Python

from aws_solutions_constructs.aws_fargate_opensearch import FargateToOpenSearch, FargateToOpenSearchProps
from aws_cdk import (
    Stack
)
from constructs import Construct

FargateToOpenSearch(self, 'test_construct',
            public_api=True,
            ecr_repository_arn="arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo",
            open_search_domain_name='testdomain',
            # TODO: Ensure the Cognito domain name is globally unique
            cognito_domain_name='globallyuniquedomain' + Aws.ACCOUNT_ID)

Java

import software.constructs.Construct;

import software.amazon.awscdk.Stack;
import software.amazon.awscdk.StackProps;
import software.amazon.awsconstructs.services.fargateopensearch.*;

new FargateToOpenSearch(this, "test_construct", new FargateToOpenSearchProps.Builder()
        .publicApi(true)
        .ecrRepositoryArn("arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo"
        .openSearchDomainName("testdomain")
        // TODO: Ensure the Cognito domain name is globally unique
        .cognitoDomainName("globallyuniquedomain" + Aws.ACCOUNT_ID)
        .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.
openSearchDomainProps?opensearchservice.CfnDomainPropsOptional user provided props to override the default props for the OpenSearch Service.
openSearchDomainNamestringDomain name for the OpenSearch Service.
cognitoDomainName?stringOptional Amazon Cognito domain name. If omitted the Amazon Cognito domain will default to the OpenSearch Service domain name.
createCloudWatchAlarms?booleanWhether to create the recommended CloudWatch alarms.
domainEndpointEnvironmentVariableName?stringOptional name for the OpenSearch Service domain endpoint environment variable set for the Lambda function. Default is DOMAIN_ENDPOINT.

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.
userPoolcognito.UserPoolReturns an instance of cognito.UserPool created by the construct.
userPoolClientcognito.UserPoolClientReturns an instance of cognito.UserPoolClient created by the construct.
identityPoolcognito.CfnIdentityPoolReturns an instance of cognito.CfnIdentityPool created by the construct.
openSearchDomainopensearchservice.CfnDomainReturns an instance of opensearch.CfnDomain created by the construct.
openSearchRoleiam.RoleReturns an instance of iam.Role created by the construct for opensearch.CfnDomain.
cloudWatchAlarms?cloudwatch.Alarm[]Returns a list of cloudwatch.Alarm 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 OpenSearch Service domain endpoint
    • Add permissions to the container IAM role allowing it to write/read to the OpenSearch Service domain endpoint

Amazon Cognito

  • Set password policy for User Pools
  • Enforce the advanced security mode for User Pools

Amazon OpenSearch Service

  • Deploy best practices CloudWatch Alarms for the OpenSearch Service domain
  • Secure the OpenSearch Service dashboard access with Cognito User Pools
  • Enable server-side encryption for OpenSearch Service domain using AWS managed KMS Key
  • Enable node-to-node encryption for the OpenSearch Service domain
  • Configure the cluster for the OpenSearch Service domain

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

9 months ago

2.71.0

9 months ago

2.67.1

10 months ago

2.69.0

10 months ago

2.70.0

9 months ago

2.68.0

10 months ago

2.67.0

10 months ago

2.58.0

1 year ago

2.59.0

1 year ago

2.58.1

1 year ago

2.64.0

11 months ago

2.65.0

11 months ago

2.60.0

1 year ago

2.61.0

12 months ago

2.62.0

11 months ago

2.63.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.50.0

1 year ago

2.51.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.42.0

2 years ago

2.45.0

2 years ago

2.44.0

2 years ago

2.43.1

2 years ago

2.41.0

2 years ago

2.40.0

2 years ago

2.39.0

2 years ago

2.38.0

2 years ago

2.37.0

2 years ago

2.32.0

2 years ago

2.31.0

2 years ago

2.34.0

2 years ago

2.33.0

2 years ago

2.36.0

2 years ago

2.35.0

2 years ago

2.30.0

2 years ago

2.29.0

3 years ago

2.28.0

3 years ago

2.27.0

3 years ago