awslabs/ecs-refarch-continuous-deployment

Deploy ECS FileName syntax

froilan opened this issue · 1 comments

Just a question with regards to the images.json syntax.
I'm struggling to find any documentation with regards to it.

Configuration:
                ClusterName: !Ref Cluster
                ServiceName: !Ref Service
                FileName: images.json

Basing on this, I assume that valid keys are name and imageUri. Is that it, or are there others?
If you don't mind, can you share a link on any documentation?

printf '[{"name":"simple-app","imageUri":"%s"}]' "$IMAGE_URI" > images.json

Great templates, really helpful btw..

Sure! That's an images definitions file. It can contain multiple definitions if your ECS service runs a task definition that has multiple containers defined. See CodePipeline documentation for more details.

Thanks!