update readme

This commit is contained in:
EC2 Default User 2023-12-05 03:34:28 +00:00 committed by nsxshota
commit d888da74eb
5 changed files with 19 additions and 15 deletions

View file

@ -1,6 +1,7 @@
import { Construct } from 'constructs';
import * as ec2 from 'aws-cdk-lib/aws-ec2'
import * as rds from "aws-cdk-lib/aws-rds";
import * as cdk from 'aws-cdk-lib';
interface RdsProps {
vpc: ec2.Vpc
@ -20,7 +21,7 @@ export class Rds extends Construct{
const rdsCredentials = rds.Credentials.fromGeneratedSecret('db_user',{
secretName: 'langflow-DbSecret',
})
// DB クラスターのパラメータグループ作成
const clusterParameterGroup = new rds.ParameterGroup(scope, 'ClusterParameterGroup',{
engine: rds.DatabaseClusterEngine.auroraMysql({