Skip to content

Commit

Permalink
Fix cfn-lint for aws-otel-fargate-sidecar-deployment-cfn.yaml (#909)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethAmazon authored Jan 24, 2022
1 parent 3a1152d commit f6dddb4
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Resources:
ContainerDefinitions:
- Name: aws-collector
Image: 'amazon/aws-otel-collector:latest'
command: [!Ref command]
Command: [!Ref command]
Cpu: '256'
Memory: '512'
LogConfiguration:
Expand All @@ -91,8 +91,8 @@ Resources:
awslogs-region: !Ref 'AWS::Region'
awslogs-stream-prefix: ecs
DependsOn:
- containerName: aws-collector
condition: START
- ContainerName: aws-collector
Condition: START
- Name: nginx
Image: 'nginx:latest'
Essential: false
Expand All @@ -106,8 +106,8 @@ Resources:
awslogs-region: !Ref 'AWS::Region'
awslogs-stream-prefix: ecs
DependsOn:
- containerName: aws-collector
condition: START
- ContainerName: aws-collector
Condition: START
- Name: aoc-statsd-emitter
Image: 'alpine/socat:latest'
Essential: false
Expand All @@ -121,8 +121,8 @@ Resources:
awslogs-region: !Ref 'AWS::Region'
awslogs-stream-prefix: ecs
DependsOn:
- containerName: aws-collector
condition: START
- ContainerName: aws-collector
Condition: START
EntryPoint:
- "/bin/sh"
- "-c"
Expand Down

0 comments on commit f6dddb4

Please sign in to comment.