docs: define single-EC2 local identity deployment

This commit is contained in:
donghyeon-ka
2026-07-25 16:41:03 +09:00
parent aee01c9e90
commit b42db5e93b
2 changed files with 34 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env sh
set -eu
rendered="$(docker compose config --format json)"
printf '%s\n' "$rendered" | jq -e '
(.services.keycloak.ports[] | .host_ip == "127.0.0.1" and .target == 8080)
and
(.services.app.ports[] | .host_ip == "127.0.0.1" and .target == 8081)
and
(.networks["keycloak-net"].driver == "bridge")
' >/dev/null
./scripts/verify-internal-spa-no-google-contract.sh
echo "Single-EC2 local-identity topology verified"