able-beard-29160
05/30/2020, 5:56 PMgitlab:token
and gitlab:base_url
config values, I get a network error:
error: Get "<https://gitlab.company.com/api/v4/user>": dial tcp: lookup <http://gitlab.company.com|gitlab.company.com> on 8.8.8.8:53: no such host
Where company.com is the redacted version of my actual host. I've double checked using cURL that I can access the instance given the access token that Pulumi uses and it all works great. Any ideas?green-school-95910
05/30/2020, 5:58 PMable-beard-29160
05/30/2020, 6:00 PMbillowy-army-68599
green-school-95910
05/30/2020, 6:11 PMIt can use a pure Go resolver that sends DNS requests directly to the servers listed in /etc/resolv.conf, or it can use a cgo-based resolver that calls C library routines such as getaddrinfo and getnameinfo.
By default the pure Go resolver is used, because a blocked DNS request consumes only a goroutine, while a blocked C call consumes an operating system thread.
able-beard-29160
05/30/2020, 6:37 PMgreen-school-95910
05/30/2020, 6:55 PMable-beard-29160
05/30/2020, 6:57 PMgreen-school-95910
05/30/2020, 7:08 PM