diff options
| author | Franck Cuny <franck@fcuny.net> | 2023-03-12 18:23:05 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2023-03-12 18:23:05 -0700 |
| commit | c06d0f4e79edfe0a5ec650b2d2a8c1a441ed3226 (patch) | |
| tree | 906d8eed426a82ae80f9644e4d5857d4b41cd11f /go.mod | |
| download | dns-updater-main.tar.gz | |
I want a simple solution to update the records for fcuny.xyz. The host
that serves these records is a tailscale node, so I want to also query
tailscale to get the IP for that host instead of hard coding the value.
Some other information are hard coded, like the name of the project in
GCP, etc.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -0,0 +1,29 @@ +module go.fcuny.net/dns-updater + +go 1.18 + +require ( + google.golang.org/api v0.112.0 + inet.af/netaddr v0.0.0-20220811202034-502d2d690317 +) + +require ( + cloud.google.com/go/compute v1.18.0 // indirect + cloud.google.com/go/compute/metadata v0.2.3 // indirect + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect + github.com/golang/protobuf v1.5.2 // indirect + github.com/google/uuid v1.3.0 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect + github.com/googleapis/gax-go/v2 v2.7.0 // indirect + go.opencensus.io v0.24.0 // indirect + go4.org/intern v0.0.0-20211027215823-ae77deb06f29 // indirect + go4.org/unsafe/assume-no-moving-gc v0.0.0-20220617031537-928513b29760 // indirect + golang.org/x/net v0.8.0 // indirect + golang.org/x/oauth2 v0.6.0 // indirect + golang.org/x/sys v0.6.0 // indirect + golang.org/x/text v0.8.0 // indirect + google.golang.org/appengine v1.6.7 // indirect + google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488 // indirect + google.golang.org/grpc v1.53.0 // indirect + google.golang.org/protobuf v1.28.1 // indirect +) |
