8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7e4753 commit 75395e1Copy full SHA for 75395e1
tailnet/controllers.go
@@ -16,6 +16,7 @@ import (
16
"golang.org/x/xerrors"
17
"storj.io/drpc"
18
"storj.io/drpc/drpcerr"
19
+ "tailscale.com/net/tsaddr"
20
"tailscale.com/tailcfg"
21
"tailscale.com/util/dnsname"
22
@@ -1265,6 +1266,11 @@ func (t *tunnelUpdater) updateDNSNamesLocked() map[dnsname.FQDN][]netip.Addr {
1265
1266
}
1267
1268
1269
+ fqdn, err := dnsname.ToFQDN("is.coder.connect.enabled.right.now--.coder.")
1270
+ if err != nil {
1271
+ panic(fmt.Sprintf("failed to create static FQDN: %v", err))
1272
+ }
1273
+ names[fqdn] = []netip.Addr{tsaddr.CoderServiceIPv6()}
1274
return names
1275
1276
0 commit comments