aws-samples / cdk-keycloak

CDK construct library that allows you to create KeyCloak on AWS in TypeScript or Python
Apache License 2.0
89 stars 30 forks source link

modify #161

Closed AlbertMingXu closed 2 years ago

AlbertMingXu commented 2 years ago
const taskDefinition = new ecs.FargateTaskDefinition(this, 'TaskDef', {
  cpu: 1024,
  memoryLimitMiB: 2048,
  executionRole: taskRole,
});