diff --git a/README.md b/README.md index 2de225d..abd9d93 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ You will need to create or have the following resources before deploying these s * Create a DNS Hosting account in [ClouDNS](https://www.cloudns.net) (with free account) # Article References -| Article Link | Description | Owner | -|-----------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|---------------| -| [Revisiting networking concepts from the client’s perspective](https://xebia.com/blog/) | The first article doesn't have any infrastructure to be deployed | Jaime Navarro | -| [Deploy Secure Public Web Endpoints](https://xebia.com/blog/) | In this section, we will review the deployment process for the related [infrastructure in this blog post](infrastructure/blog_post_2/README.md) | Jaime Navarro | -| [Region Evacuation with DNS approach](https://xebia.com/blog/) | In this section, we will review the deployment process for the related [infrastructure in this blog post](infrastructure/blog_post_3/README.md) | Jaime Navarro | -| [Region Evacuation with static anycast IP approach](https://xebia.com/blog/) | In this section, we will review the deployment process for the related [infrastructure in this blog post](infrastructure/blog_post_4/README.md) | Jaime Navarro | \ No newline at end of file +| Article Link | Description | Owner | +|-----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| +| [Revisiting networking concepts from the client’s perspective](https://xebia.com/blog/building-resilient-public-networking-aws-part-1/) | The first article doesn't have any infrastructure to be deployed | [Jaime Navarro](https://github.com/jaimenavarro) | +| [Deploy Secure Public Web Endpoints](https://xebia.com/blog/) | In this section, we will review the deployment process for the related [infrastructure](infrastructure/blog_post_2/README.md) | [Jaime Navarro](https://github.com/jaimenavarro) | +| [Region Evacuation with DNS approach](https://xebia.com/blog/) | In this section, we will review the deployment process for the related [infrastructure](infrastructure/blog_post_3/README.md) | [Jaime Navarro](https://github.com/jaimenavarro) | +| [Region Evacuation with static anycast IP approach](https://xebia.com/blog/) | In this section, we will review the deployment process for the related [infrastructure](infrastructure/blog_post_4/README.md) | [Jaime Navarro](https://github.com/jaimenavarro) | \ No newline at end of file diff --git a/infrastructure/blog_post_2/README.md b/infrastructure/blog_post_2/README.md index dd3234d..0074f9a 100644 --- a/infrastructure/blog_post_2/README.md +++ b/infrastructure/blog_post_2/README.md @@ -30,16 +30,21 @@ In this GitHub repository, update the [configuration file](./config/environment. ```javascript export const AppConfig = { - VPC_NAME: 'fargate-test', - CLUSTER_NAME: 'fargate-test', + VPC_NAME: 'vpc-web-container', + CLUSTER_NAME: 'fargate-cluster-web-container', APP_NAME: 'app-region-evacuation', DNS_ZONE_NAME: 'subdomain-2.subdomain-1.cloudns.ph', - INTERNAL_DNS: 'web-container' + INTERNAL_DNS: 'web-container', + DOCKER_IMAGE: 'jaimenavarro/web-container' }; ``` ## Step 3 - Build These are the following steps to build the project: +* Make sure you are in the right folder +```bash +cd infrastructure/blog_post_2 +``` * Install javascript dependencies ```bash npm install -dd