diff --git a/sample-cdk/sample_cdk/sample_cdk_stack.py b/sample-cdk/sample_cdk/sample_cdk_stack.py index 6a80c2a..47d3da9 100644 --- a/sample-cdk/sample_cdk/sample_cdk_stack.py +++ b/sample-cdk/sample_cdk/sample_cdk_stack.py @@ -10,7 +10,7 @@ class MyEcsStack(Stack): def __init__(self, scope: Construct, id: str, **kwargs) -> None: super().__init__(scope, id, **kwargs) - # Create a Fargate Task Definition + # Create a Fargate Task Definition for testing task_definition = ecs.TaskDefinition( self, "MyECSTaskDefinition", compatibility=ecs.Compatibility.FARGATE, @@ -30,4 +30,4 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None: ecs.PortMapping( container_port=80 ) - ) \ No newline at end of file + )