This is the Amazon Elastic Container Service plugin for backstage.io.
It provides:
- Entity content that displays the status of Amazon ECS services related to that specific entity
The plugin consists of the following packages:
frontend
: The frontend plugin package installed in Backstagebackend
: The backend plugin package installed in Backstagecommon
: Types and utilities shared between the packages
This guide assumes that you are familiar with the general Getting Started documentation and have assumes you have an existing Backstage application.
The IAM role(s) used by Backstage will require the following permissions:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ecs:DescribeServices",
"ecs:ListTasks",
"ecs:DescribeTasks",
"ecs:DescribeClusters"
],
"Resource": "*"
}
]
}
Note: This policy does not reflect least privilege and you should further limit the policy to the appropriate AWS resources.
Install the backend package in your Backstage app:
yarn workspace backend add @aws/amazon-ecs-plugin-for-backstage-backend
Add the plugin to the packages/backend/src/index.ts
:
const backend = createBackend();
// ...
backend.add(import('@aws/amazon-ecs-plugin-for-backstage-backend'));
// ...
backend.start();
Verify that the backend plugin is running in your Backstage app. You should receive {"status":"ok"}
when accessing this URL:
https://<your backstage app>/api/amazon-ecs/health
.
Install the frontend package in your Backstage app:
yarn workspace app add @aws/amazon-ecs-plugin-for-backstage
Edit packages/app/src/components/catalog/EntityPage.tsx
to add an Amazon ECS service tab to the entity page:
import {EntityAmazonEcsServicesContent} from '@aws/amazon-ecs-plugin-for-backstage';
{
/* ... */
}
const serviceEntityPage = (
<EntityLayout>
{
/* ... */
}
< EntityLayout.Route path = "/ecs" title = "Amazon ECS" >
<EntityAmazonEcsServicesContent / >
</EntityLayout.Route>
< /EntityLayout>
{
/* ... */
}
)
;
There are two annotations that can be used to reference ECS services for an entity.
The first will retrieve all ECS services with the matching tags, this is done with the aws.amazon.com/amazon-ecs-service-tags
annotation:
# Example
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
# ...
annotations:
aws.amazon.com/amazon-ecs-service-tags: component=myapp,environment=prod
spec:
type: service
# ...
Please review the Locating resources documentation to understand any additional configuration required for tag-based lookup.
The alternative is to reference a specific ECS service by ARN, this is done with the aws.amazon.com/amazon-ecs-service-arn
annotation:
# Example
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
# ...
annotations:
aws.amazon.com/amazon-ecs-service-arn: arn:aws:ecs:us-west-2:1234567890:service/cluster1/myapp-service
spec:
type: service
# ...