Files
jpictl/pkg/dns/dns.go
T
amery db3c476930 DNS [WIP]
Signed-off-by: Alejandro Mery <amery@jpi.io>
2023-09-10 21:38:53 +00:00

13 lines
346 B
Go

// Package dns manages DNS entries for the cluster
package dns
// A Region describes where a Zone is
type Region struct {
// Name is the identifier of this Region
Name string
// Regions are a list of (sub)regions that belong to this Region
Regions []string
// Zones are a list of Zones that directly belong to this Region
Zones []string
}