ECS Fargate:
AWS ECS (Elastic Container Service) Fargate is a serverless compute engine offered by Amazon Web Services (AWS) for deploying and managing containerized applications. It simplifies the process of running containers at scale without the need to manage the underlying infrastructure. With ECS Fargate, you can focus on your application logic and let AWS handle the provisioning, scaling, and maintenance of the compute resources.
...
How do we run terraform script to install knowhow on ECS from scratch:
Terraform Script Repo URL:https://pscode.lioncloud.net/psinnersource/monitor-measure-metrics/speedy-product/-
View file | ||
---|---|---|
|
|
Step 1 - Clone the Terraform Repo And Run below command for 1-Infrastructure
Code Block |
---|
git clone https://pscode.lioncloud.net/psinnersource/monitor-measure-metrics/speedy-product/knowhow-terraform-scripts.git
cd ecs_fargate/1-Infrastructure
terraform init
terraform apply -auto-approve |
...
Code Block |
---|
cd ../2-Platform ##Replace your SSL_certificate_arn at line 122 in 2-Platform/variable.tf file ##Replace with your actual IP address at line no. 118 terraform init terraform apply -auto-approve |
Refer README.MD from repo folder to know more about steps to upload SSL certificate.
...