You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
As a first step toward this goal I have created a hosted zone in R53 named aws-playground.local
Within that zone I have a CNAME record for test.aws-playground.local that points to local-alb.elb.localhost.localstack.cloud
Running dig on the LocalStack container shows it is available
dig @localhost test.aws-playground.local ANY
;; QUESTION SECTION:
;test.aws-playground.local. IN ANY
;; ANSWER SECTION:
test.aws-playground.local. 300 IN CNAME local-alb.elb.localhost.localstack.cloud.
On the LocalStack container I can run this command and get the expected response from the ALB
Outside of docker I have also added an entry in my local hosts file to point api.aws-playground.local to 127.0.0.1 and see the same behaviour.
Is it possible to use a custom domain to access an ALB in LocalStack?
I would be happy to disable the ability to access S3 buckets via domain if that was an option.