How to Deploy Your Container into AWS EC2 with ECS"

How to Deploy Your Container into AWS EC2 with ECS"

AWS is a piece of cake no one ever said! That’s why today we’re bringing this tutorial to help you deploy your container into AWS EC2 with Elastic Container Service.

By Fred Dogan ·

How to Deploy your container in AWS EC2 with ECS (Cover)

AWS is a piece of cake no one ever said! That’s why today we’re bringing this tutorial to help you deploy your container into AWS EC2 with Elastic Container Service.

ECS is a container management service. You can run your containers as task definitions, and It’s one of the easiest ways to deploy containers.

There is no prerequisite in this tutorial. We’ll deploy Permify today, which is an open-source authorization service for building scalable access control and permissions systems in your application.

You can simply deploy any container by following this step-by-step guide. However, if you want to integrate more advanced AWS security & networking features, we’ll follow up with a new tutorial guideline.

At the end of this tutorial you’ll be able to;

  1. Create a security group.

  2. Creating and configuring ECS Clusters.

  3. Creating and defining task definitions.

  4. Running our task definition.

Local Image

1. Create an EC2 Security Group

So first thing first, let’s go over into security groups and create our security group. We’ll need this security group while creating our cluster.

Security Group

Search for “Security Groups” in the search bar. And go to the EC2 security groups feature.

Security Group (Create)

Then start creating a new security group.

Security Group (Inbound Rules)

You have to name your security group, and give a description. Also, you need to choose the same VPC that you’ll going to use in EC2. So, I choose the default one. And I’m going to use same one while creating the ECS cluster.

The next step is to configure our inbound rules. Here’s the configuration:

//for mapping HTTP request port.
type = "Custom TCP", protocol = "TCP", port_range = "3476",source = "Anywhere", ::/0

type = "Custom TCP", protocol = "TCP", port_range = "3476",source = "Anywhere", 0.0.0.0/0

//for mapping RPC request port.
type = "Custom TCP", protocol = "TCP", port_range = "3478",source = "Anywhere", ::/0

type = "Custom TCP", protocol = "TCP", port_range = "3476",source = "Anywhere", 0.0.0.0/0

//for using SSH for connecting from your local computer.
type = "Custom TCP", protocol = "TCP", port_range = "22",source = "Anywhere", 0.0.0.0/0

We have configured the HTTP and RPC ports for Permify. Also, we added port “22” for SSH connection. So, we can connect to EC2 through our local terminal. Now, we’re good to go. You can create the security group. And it’s ready to use in our ECS.

2. Creating an ECS cluster

Screenshot 2022-12-16 at 17 50 24

The next step is to create an ECS cluster. From your AWS console search for Elastic Container Service or ECS for short.

Screenshot 2022-12-16 at 18 02 14

Then go over the clusters. As you can see there are 2 types of clusters. One is for ECS and another for EKS. We need to use ECS, EKS stands for Elastic Kubernetes Service. Today we’re not going to cover Kubernetes.

Click “Create Cluster”

Screenshot 2022-12-16 at 23 14 30

Let’s Create our first Cluster. Simply you have 3 options; Serverless(Network Only), Linux, and Windows. We’re going to cover EC2 Linux + Networking option.

Screenshot 2022-12-16 at 18 09 16

The next step is to configure our Cluster, starting with your Cluster name. Since we’re deploying Permify, I’ll call it “permify”.

Then choose your instance type. You can take a look at different instances and pricing from here. I’m going with the t4 large. For cost purposes, you can choose t2.micro if you’re just trying out. It’s free tier eligible.

Also, if you want to connect this EC2 instance from your local computer. You need to use SSH. Thus choose a key pair. If you have no such intention, leave it “none”.

Creating Cluster (Networking)

Now, we need to configure networking. First, choose your VPC, we use the default VPC as we did in the security groups. And choose any subnet on that VPC.

You want to enable auto-assigned IP if you want to make your app reachable from the internet.

Choose the security group we have created previously.

And voila, you can create your cluster. Now, we need to run our container in this cluster. To do that, let’s go over task definitions. And create our container definition.

3. Creating and running task definitions

Go over to ECS, and click the task definitions.

3-1

And create a new task definition.

3-2

Again, you’re going to ask to choose between; FARGATE, EC2, and EXTERNAL (On-premise). We’ll continue with EC2.

Leave everything in default under the “Configure task and container definitions” section.

3-3

Under the IAM role section you can choose “ecsTaskExecutionRole” if you want to use Cloud Watch later.

You can leave task size in default since it’s optional for EC2.

The critical part over here is to add our container. Click on the “Add Container” button.

3-4

Then we need to add our container details. First, give a name. And then the most important part is our image URI. Permify is registered on the Github Registry so our image URI is;

ghcr.io/permify/permify:latest

Then we need to define memory limit for the container, I went with 1024. You can define as much as your instance allows.

Next step is to mapping our ports. As we mentioned in security groups, Permify by default listens;

  • 3476 for HTTP port
  • 3478 for RPC port

3-5

Then we need to define command under the environment section. So, in order to start permify we first need to add “serve” command.

For using properly we need a few other. Here’s the commands we need.

serve, --database-engine=postgres, --database-name=<db_name>, --database-uri=postgres://<user_name>:<password>@<db_endpoint>:<db_port>, --database-pool-max=20

`serve` ⇒ for starting the Permify.
`--database-engine=postgres` ⇒ for defining the db we use.
`--database-name=<database_name>` ⇒ name of the database you use.
`--database-uri=postgres://<user_name>:password@<db_endpoint>:<db_port>` ⇒ for connecting your database with URI.
`--database-pool-max=20` ⇒ the depth for running in the graph.

view raw command under the environment section hosted with ❤ by GitHub We’re nice and clear, add the container and then just create your task definition. We’ll use this definition to run in our cluster.

So, let’s go over and run our task definition.

4. Running our task definition

4-1

Let’s go to ECS and enter into our cluster. And go over into the tasks to run our task.

4-2

Click to “Run new Task”

4-3

Choose EC2 as a launch type. Then pick the task definition we just created. And leave everything else in the default. You can run your task now.

We have just deployed our container into an EC2 instance with ECS. Let’s test it.

Now you can go over into EC2, and click on the running instances. Find the instance named ECS Instance:

EC2ContainerService-<cluster_name>

in the running instances. 4-4

Copy the Public IPv4 DNS from the right corner, and paste it into your browser. But you need to add :3476 to access our http endpoint. So it should be like this;

<public_IPv4_DNS>:3476

and if you add healthz at the end like this;

<public_IPv4_DNS>:3476/healthz

you should get Serving status :)

4-5

And it’s nice and clear! You can start using Permify with all the endpoints now. For more check our repo and documentation.

Here’s what we had today.

  1. We created a security group to reveal 3476 for our HTTP port, 3478 for our RPC port, and 22 for our SSH connection.
  2. Then we created an ECS cluster to initialize the EC2 instance and deploy our container into it.
  3. We created and defined a task definition to run our container in ECS.
  4. And we run our task to deploy our container into an EC2 instance with ECS.

I hope you find this tutorial useful. If you have any questions or suggestions about this tutorial or Permify, feel free to reach me out at firat@permify.co