Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit 20903ef

Browse files
committed
Minor changes to README file
1 parent 9b4e167 commit 20903ef

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

README.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -79,18 +79,16 @@ but it should be easy to extend to extend the template to work on other regions.
7979
**Note**: Make sure Fargate is available in the regions you want to run this from.
8080
Here is a list of products by region: https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services.
8181

82-
The CloudFormation template will ask for a few basic parameters.
82+
The CloudFormation template will ask for a few basic parameters and will create everything needed to run Fargate on AWS;
83+
including a VPC, 3 public subnets in different AZs, a security group, an internet gateway, a route table, a CloudWatch
84+
group, a CloudWatch Log Filter, an IAM role for the tasks, an ECS cluster and the Task Definition for Fargate.
8385

8486
![CloudFormation](docs/cloudformation.png)
8587

8688
- **DockerImage**. Specify the docker image that you published to the DockerHub.
8789
- **DockerTaskCpu**. Number of CPU units to assign to the Fargate tasks ([Task Size Reference](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size)).
8890
- **DockerTaskMemory**. Memory in MB to assign to the Fargate tasks ([Task Size Reference](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size))
89-
- **FargateClusterName**. Name of your cluster so you can identiy it.
90-
91-
The CloudFormation template will create everything needed to run Fargate on AWS; including the VPC, subnets,
92-
security groups, internet gateway and route tables.
93-
91+
- **FargateClusterName**. Name of your cluster so you can identify it in the ECS Console.
9492

9593
### 5. Run the tests
9694

@@ -99,9 +97,7 @@ you launched on the previous step. This python file will read the CloudFormation
9997
will schedule the execution of the Fargate tasks.
10098

10199
Before running the python script, install boto3 by creating a virtual environment. Creating a virtual
102-
environment is optional, but recommended.
103-
104-
If you don't have virtualenv installed, you can install it with pip. If you already have it, skip this step.
100+
environment is optional, but recommended. If you don't have virtualenv installed, you can install it with pip.
105101

106102
```bash
107103
pip install virtualenv
@@ -115,7 +111,7 @@ virtualenv env
115111
source env/bin/activate
116112
```
117113

118-
Once inside the virtual environment, install the dependencies (boto3) by running:
114+
Once inside the virtual environment, install boto3 by running:
119115

120116
```bash
121117
pip install -r requirements.txt

0 commit comments

Comments
 (0)