Skip to content

Commit

Permalink
Merge pull request #149 from willosborne/remove-placeholders
Browse files Browse the repository at this point in the history
Remove placeholders from api gateway sample
  • Loading branch information
willosborne committed Apr 18, 2024
2 parents 4d5364e + a90524c commit d16492f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ docs/contributing.md
website/package-lock.json
/.idea/

**/.vscode/
**/.vscode/

node_modules/
10 changes: 5 additions & 5 deletions calm/samples/api-gateway-implementation.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"$schema": "https://raw.githubusercontent.com/finos-labs/architecture-as-code/main/calm/pattern/api-gateway.json",
"nodes": [
{
"well-known-endpoint": "{{ WELL_KNOWN_ENDPOINT }}",
"well-known-endpoint": "https://identity-provider.com/.well-known/openid-configuration",
"name": "API Gateway",
"description": "The API Gateway used to verify authorization and access to downstream system",
"node-type": "system",
"unique-id": "api-gateway",
"interfaces": [
{
"unique-id": "api-gateway-ingress",
"host": "{{ INGRESS_HOST }}",
"port": -1
"host": "https://api-gateway-ingress.example.com",
"port": 443
}
]
},
Expand All @@ -25,8 +25,8 @@
"interfaces": [
{
"unique-id": "producer-ingress",
"host": "{{ INGRESS_HOST }}",
"port": -1
"host": "https://api-producer.example.com",
"port": 443
}
],
"node-type": "system",
Expand Down

0 comments on commit d16492f

Please sign in to comment.