-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_iot_setup.go
executable file
·50 lines (45 loc) · 1.96 KB
/
zz_iot_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
45
46
47
48
49
50
// SPDX-FileCopyrightText: 2023 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"
certificate "github.com/upbound/provider-aws/internal/controller/iot/certificate"
indexingconfiguration "github.com/upbound/provider-aws/internal/controller/iot/indexingconfiguration"
loggingoptions "github.com/upbound/provider-aws/internal/controller/iot/loggingoptions"
policy "github.com/upbound/provider-aws/internal/controller/iot/policy"
policyattachment "github.com/upbound/provider-aws/internal/controller/iot/policyattachment"
provisioningtemplate "github.com/upbound/provider-aws/internal/controller/iot/provisioningtemplate"
rolealias "github.com/upbound/provider-aws/internal/controller/iot/rolealias"
thing "github.com/upbound/provider-aws/internal/controller/iot/thing"
thinggroup "github.com/upbound/provider-aws/internal/controller/iot/thinggroup"
thinggroupmembership "github.com/upbound/provider-aws/internal/controller/iot/thinggroupmembership"
thingprincipalattachment "github.com/upbound/provider-aws/internal/controller/iot/thingprincipalattachment"
thingtype "github.com/upbound/provider-aws/internal/controller/iot/thingtype"
topicrule "github.com/upbound/provider-aws/internal/controller/iot/topicrule"
)
// Setup_iot creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_iot(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
certificate.Setup,
indexingconfiguration.Setup,
loggingoptions.Setup,
policy.Setup,
policyattachment.Setup,
provisioningtemplate.Setup,
rolealias.Setup,
thing.Setup,
thinggroup.Setup,
thinggroupmembership.Setup,
thingprincipalattachment.Setup,
thingtype.Setup,
topicrule.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}