Added cognito authentication - Fix 6
All checks were successful
AWS Deploy on Push / build (push) Successful in 1m32s

This commit is contained in:
2025-05-15 16:29:57 -05:00
parent 7f282049ac
commit 47befceb17

View File

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