Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/turnerlabs/terraform-ecs-fargate-nlb
A Terraform template used for provisioning network application stacks on AWS ECS Fargate
https://github.com/turnerlabs/terraform-ecs-fargate-nlb
aws containers ecs fargate nlb template terraform
Last synced: about 1 month ago
JSON representation
A Terraform template used for provisioning network application stacks on AWS ECS Fargate
- Host: GitHub
- URL: https://github.com/turnerlabs/terraform-ecs-fargate-nlb
- Owner: turnerlabs
- License: apache-2.0
- Created: 2018-08-23T18:39:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-03T02:02:00.000Z (over 2 years ago)
- Last Synced: 2024-11-08T18:46:48.533Z (about 2 months ago)
- Topics: aws, containers, ecs, fargate, nlb, template, terraform
- Language: HCL
- Homepage:
- Size: 4.63 MB
- Stars: 62
- Watchers: 8
- Forks: 25
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ecs - Network Application (NLB)
README
# Terraform ECS Fargate NLB
A set of Terraform templates used for provisioning network application stacks on [AWS ECS Fargate][fargate] using an NLB (network load balancer) rather than [ALB](https://github.com/turnerlabs/terraform-ecs-fargate).
![diagram](diagram.png)
The templates are designed to be customized. The optional components can be removed by simply deleting the `.tf` file.
The templates are used for managing infrastructure concerns and, as such, the templates deploy a [default backend docker image](env/dev/ecs.tf#L26). We recommend using the [fargate CLI](https://github.com/turnerlabs/fargate) for managing application concerns like deploying your actual application images and environment variables on top of this infrastructure. The fargate CLI can be used to deploy applications from your laptop or in CI/CD pipelines.
## Components
### base
These components are shared by all environments.
| Name | Description | Optional |
|------|-------------|:---:|
| [main.tf][bm] | AWS provider, output | |
| [state.tf][bs] | S3 bucket backend for storing Terraform remote state | |
| [ecr.tf][be] | ECR repository for application (all environments share) | ||### env/dev
These components are for a specific environment. There should be a corresponding directory for each environment
that is needed.| Name | Description | Optional |
|------|-------------|:----:|
| [main.tf][edm] | Terrform remote state, AWS provider, output | |
| [ecs.tf][ede] | ECS Cluster, Service, Task Definition, ecsTaskExecutionRole, CloudWatch Log Group | |
| [nlb.tf][edl] | NLB, Target Group, Listener | |
| [nsg.tf][edn] | NSG for NLB and Task | |
| [dashboard.tf][edd] | CloudWatch dashboard: CPU, memory, and HTTP-related metrics | Yes |
| [role.tf][edr] | Application Role for container | Yes |
| [cicd.tf][edc] | IAM user that can be used by CI/CD systems | Yes |
| [autoscale-perf.tf][edap] | Performance-based auto scaling | Yes |
| [autoscale-time.tf][edat] | Time-based auto scaling | Yes |
| [logs-logzio.tf][edll] | Ship container logs to logz.io | Yes |## Usage
Typically, the base Terraform will only need to be run once, and then should only
need changes very infrequently. After the base is built, each environment can be built.```
# Move into the base directory
$ cd base# Sets up Terraform to run
$ terraform init# Executes the Terraform run
$ terraform apply# Now, move into the dev environment
$ cd ../env/dev# Sets up Terraform to run
$ terraform init# Executes the Terraform run
$ terraform apply
```## fargate-create
Alternatively you can use the [fargate-create CLI](https://github.com/turnerlabs/fargate-create) to scaffold new projects based on this template.
install
```shell
curl -s get-fargate-create.turnerlabs.io | sh
```create an input vars file (`terraform.tfvars`)
```hcl
# app/env to scaffold
app = "my-app"
environment = "dev"internal = true
container_port = "8080"
replicas = "1"
region = "us-east-1"
aws_profile = "default"
saml_role = "admin"
vpc = "vpc-123"
private_subnets = "subnet-123,subnet-456"
public_subnets = "subnet-789,subnet-012"
tags = {
application = "my-app"
environment = "dev"
team = "my-team"
customer = "my-customer"
contact-email = "[email protected]"
}
``````shell
$ fargate-create -f terraform.tfvars -t [email protected]:turnerlabs/terraform-ecs-fargate-nlb
```## Additional Information
+ [Base README][base]
+ [Environment `dev` README][env-dev]
[fargate]: https://aws.amazon.com/fargate/
[bm]: ./base/main.tf
[bs]: ./base/state.tf
[be]: ./base/ecr.tf
[edm]: ./env/dev/main.tf
[ede]: ./env/dev/ecs.tf
[edl]: ./env/dev/lb.tf
[edn]: ./env/dev/nsg.tf
[edlhttp]: ./env/dev/lb-http.tf
[edlhttps]: ./env/dev/lb-https.tf
[edd]: ./env/dev/dashboard.tf
[edr]: ./env/dev/role.tf
[edc]: ./env/dev/cicd.tf
[edap]: ./env/dev/autoscale-perf.tf
[edat]: ./env/dev/autoscale-time.tf
[edll]: ./env/dev/logs-logzio.tf
[base]: ./base/README.md
[env-dev]: ./env/dev/README.md