-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_route53_setup.go
executable file
·44 lines (39 loc) · 1.7 KB
/
zz_route53_setup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// SPDX-FileCopyrightText: 2024 The Crossplane Authors <https://crossplane.io>
//
// SPDX-License-Identifier: Apache-2.0
package controller
import (
ctrl "sigs.k8s.io/controller-runtime"
"github.com/crossplane/upjet/pkg/controller"
delegationset "github.com/upbound/provider-aws/internal/controller/route53/delegationset"
healthcheck "github.com/upbound/provider-aws/internal/controller/route53/healthcheck"
hostedzonednssec "github.com/upbound/provider-aws/internal/controller/route53/hostedzonednssec"
record "github.com/upbound/provider-aws/internal/controller/route53/record"
resolverconfig "github.com/upbound/provider-aws/internal/controller/route53/resolverconfig"
trafficpolicy "github.com/upbound/provider-aws/internal/controller/route53/trafficpolicy"
trafficpolicyinstance "github.com/upbound/provider-aws/internal/controller/route53/trafficpolicyinstance"
vpcassociationauthorization "github.com/upbound/provider-aws/internal/controller/route53/vpcassociationauthorization"
zone "github.com/upbound/provider-aws/internal/controller/route53/zone"
zoneassociation "github.com/upbound/provider-aws/internal/controller/route53/zoneassociation"
)
// Setup_route53 creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_route53(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
delegationset.Setup,
healthcheck.Setup,
hostedzonednssec.Setup,
record.Setup,
resolverconfig.Setup,
trafficpolicy.Setup,
trafficpolicyinstance.Setup,
vpcassociationauthorization.Setup,
zone.Setup,
zoneassociation.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}