A REST API microservice orchestrated by Amazon ECS on AWS Fargate that writes and reads voting data from an Amazon Aurora PostgreSQL database.
- Install the AWS Copilot CLI https://aws.github.io/copilot-cli/
- Run
$ copilot init
- Enter "voting-app" for the name of your application.
- Select "Backend Service" for the service type.
- Enter "api" for the name of the service.
- Say "Y" to deploying to a "test" environment 🚀
Once deployed, your service will be accessible at http://api.voting-app.local:8080
within your VPC.
AWS Copilot uses AWS CloudFormation under the hood to provision your infrastructure resources. You should see two different stacks created for you:
voting-app-test-api
: Holds your ECS Service.voting-app-test-api-AddonsStack-<RandomString>
: Holds the Aurora database.
Take a look at the resources in the stacks to see all that's generated for you.
Copilot stores the infrastructure-as-code for your service under the copilot/
directory.
copilot
└── api
├── addons
│ └── db.template.yaml
└── manifest.yml
The manifest.yml
file under api/
holds the common configuration for a "backend service" pattern.
For example, in this manifest we demo how you can set up autoscaling for your service as well as container healthchecks.
The Aurora database is defined under the api/addons/
directory which can hold any arbitrary CloudFormation template.
The "addons" features allows you to integrate with any AWS services that are not provided by default with the Copilot manifest.
You can find out in more details how Copilot works from our documentation.
If you'd like to delete only the service from the "voting-app" application.
$ copilot svc delete
If you'd like to delete the entire application including other services and deployment environments:
$ copilot app delete