Added cognito authentication - Fix 5
Some checks failed
AWS Deploy on Push / build (push) Failing after 1m0s

This commit is contained in:
2025-05-15 16:24:37 -05:00
parent 38e5a94701
commit 7f282049ac
3 changed files with 30 additions and 25 deletions

View File

@@ -124,9 +124,10 @@ class IptvUpdaterStack(Stack):
),
scopes=[cognito.OAuthScope.OPENID],
callback_urls=[
"http://localhost:8000/auth/callback", # For local testing
"https://*.amazonaws.com/auth/callback" # Will match EC2 public DNS
]
"http://localhost:8000/auth/callback", # For local testing
"http://*.amazonaws.com/auth/callback", # EC2 public DNS
"http://*.compute.amazonaws.com/auth/callback" # EC2 full domain
]
)
)