Skip to content

Commit ce49ae3

Browse files
committed
fix:(domains): fix config domains
1 parent 4703248 commit ce49ae3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/domains-api/src/config/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ const config: Config = {
2828
awsAccessKey: process.env.AWS_ACCESS_KEY,
2929
awsSecretKey: process.env.AWS_SECRET_KEY,
3030
awsRoute53Region: process.env.AWS_ROUTE53_REGION || 'sa-east-1',
31-
awsLoadBalancerDns: process.env.AWS_LOAD_BALANCER_DNS || 'a2f212cad2d294747a445a1c3912809d-d2f26ccca140a83f.elb.us-east-1.amazonaws.com.',
32-
awsLoadBalancerHostedZoneId: process.env.AWS_LOAD_BALANCER_HOSTED_ZONE_ID || 'Z35SXDOTRQ7X7K'
31+
awsLoadBalancerDns: process.env.AWS_LOAD_BALANCER_DNS || 'localhost',
32+
awsLoadBalancerHostedZoneId: process.env.AWS_LOAD_BALANCER_HOSTED_ZONE_ID || 'localhost'
3333
};
3434

3535
export default config;

0 commit comments

Comments
 (0)