Server Infra/AWS
2022. 4. 12.
AWS Lambda Function URL 사용 #2
이번에는 Lambda를 VPC 내부에 위치 시켜 보았다. 요즘은 CDK를 열심히 쓰고 있으니 CDK로 현재 VPC 네트워크 구조를 알아보자 export class VpcStack extends Stack { constructor(scope: Construct, id: string, props?: StackProps) { super(scope, id, props); const mySiteBucketName = new CfnParameter(this, "mySiteBucketName", { type: "String" , description: "The name of S3 bucket to upload react application" }); const vpc = new ec2.Vpc(this, 'Specif..