diff --git a/internal/roles/host/host.go b/internal/roles/host/host.go index 2b35181..ca61e2f 100644 --- a/internal/roles/host/host.go +++ b/internal/roles/host/host.go @@ -93,7 +93,12 @@ func (r *Role) getInternal() (types.HostState, error) { } func (r *Role) getExternal() (types.HostState, error) { - return types.HostState{}, nil + return types.HostState{ + Domains: r.externalDomains, + Address: r.config.IpAddress, + Hostname: r.state.Self.Hostname, + }, nil + } func (r *Role) RegisterHandlers(rg types.Registrator) {