db3c476930
Signed-off-by: Alejandro Mery <amery@jpi.io>
13 lines
346 B
Go
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
|
|
}
|