Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msfidelis/linuxtips-curso-containers-ecs-health-api-lab
🍞 🍔 🍕 🥪 🥚 🥓 - Repositório usado para subir o lab de microserviços do Health API no ECS usando o modulo criado em aula
https://github.com/msfidelis/linuxtips-curso-containers-ecs-health-api-lab
Last synced: 28 days ago
JSON representation
🍞 🍔 🍕 🥪 🥚 🥓 - Repositório usado para subir o lab de microserviços do Health API no ECS usando o modulo criado em aula
- Host: GitHub
- URL: https://github.com/msfidelis/linuxtips-curso-containers-ecs-health-api-lab
- Owner: msfidelis
- License: mit
- Created: 2024-07-08T22:31:48.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-01T01:21:13.000Z (about 1 month ago)
- Last Synced: 2024-10-15T18:04:08.907Z (28 days ago)
- Language: HCL
- Homepage:
- Size: 247 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lab do Health API
Repositório usado para subir o lab de microserviços do Health API no ECS usando o modulo criado em aula## [v1] - Roteamento Interno e Externo
O Objetivo é subir um ambiente com comunicação distribuída entre vários microserviços internos e externos dentro da AWS
![v1](.github/assets/health-api.png)
```bash
curl --location --request POST 'http://health.linuxtips.demo/calculator' \
--header 'Content-Type: application/json' \
--data-raw '{
"age": 26,
"weight": 90.0,
"height": 1.77,
"gender": "M",
"activity_intensity": "very_active"
} ' --silent | jq .
```## [V2] - API Gateway e VPC Link para Exposição Externa
![v2](.github/assets/health-api-gateway.png)