File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,12 @@ import type { Telemetry } from "./telemetry.ts";
1515
1616const LOCALSTACK_CONFIG_PROFILE_NAME = "profile localstack" ;
1717const VALID_ENDPOINT_URLS = [
18- "http://localhost.localstack.cloud:4566" , // default
18+ "http://localhost.localstack.cloud:4566" ,
19+ "https://localhost.localstack.cloud:4566" ,
1920 "http://127.0.0.1:4566" ,
21+ "https://127.0.0.1:4566" ,
2022 "http://localhost:4566" ,
23+ "https://localhost:4566" ,
2124] ;
2225const LOCALSTACK_CONFIG_PROPERTIES = {
2326 region : "us-east-1" ,
@@ -143,8 +146,8 @@ async function configureAwsConfigProfile(
143146 // check if dnsResolveCheck is successful
144147 const isDnsResolved = await dnsResolveCheck ( ) ;
145148 const endpointUrl = isDnsResolved
146- ? "http ://localhost.localstack.cloud:4566"
147- : VALID_ENDPOINT_URLS [ 1 ] ;
149+ ? "https ://localhost.localstack.cloud:4566"
150+ : "https://127.0.0.1:4566" ;
148151
149152 const updatedIniFile = updateIniSection (
150153 iniFile ,
You can’t perform that action at this time.
0 commit comments