Skip to content

Commit

Permalink
Second blog post review 2 (#6)
Browse files Browse the repository at this point in the history
* Review 2 - second blog post

* Review 2 - second blog post

* Review 2 - second blog post
  • Loading branch information
jaimenavarro authored Nov 28, 2023
1 parent f3ece73 commit 7bc83f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
| 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) |
11 changes: 8 additions & 3 deletions infrastructure/blog_post_2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7bc83f1

Please sign in to comment.