Update address to localhost to be consistent with other proxies

This commit is contained in:
Wilken Rivera 2020-05-07 14:10:51 -04:00
parent 7cea7466ba
commit bf1da57a05
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ func SSHHost(e ec2Describer, sshInterface string, host string) func(multistep.St
}
if sshInterface == "session_manager" {
return "127.0.0.1", nil
return "localhost", nil
}
const tries = 2

View File

@ -13,7 +13,7 @@ const (
publicIP = "192.168.1.1"
privateDNS = "private.dns.test"
publicDNS = "public.dns.test"
localhost = "127.0.0.1"
localhost = "localhost"
sshHostTemplate = "custom.host.value"
)