-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_ses_setup.go
executable file
·50 lines (45 loc) · 2 KB
/
zz_ses_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: 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"
activereceiptruleset "github.com/upbound/provider-aws/internal/controller/ses/activereceiptruleset"
configurationset "github.com/upbound/provider-aws/internal/controller/ses/configurationset"
domaindkim "github.com/upbound/provider-aws/internal/controller/ses/domaindkim"
domainidentity "github.com/upbound/provider-aws/internal/controller/ses/domainidentity"
domainmailfrom "github.com/upbound/provider-aws/internal/controller/ses/domainmailfrom"
emailidentity "github.com/upbound/provider-aws/internal/controller/ses/emailidentity"
eventdestination "github.com/upbound/provider-aws/internal/controller/ses/eventdestination"
identitynotificationtopic "github.com/upbound/provider-aws/internal/controller/ses/identitynotificationtopic"
identitypolicy "github.com/upbound/provider-aws/internal/controller/ses/identitypolicy"
receiptfilter "github.com/upbound/provider-aws/internal/controller/ses/receiptfilter"
receiptrule "github.com/upbound/provider-aws/internal/controller/ses/receiptrule"
receiptruleset "github.com/upbound/provider-aws/internal/controller/ses/receiptruleset"
template "github.com/upbound/provider-aws/internal/controller/ses/template"
)
// Setup_ses creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_ses(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
activereceiptruleset.Setup,
configurationset.Setup,
domaindkim.Setup,
domainidentity.Setup,
domainmailfrom.Setup,
emailidentity.Setup,
eventdestination.Setup,
identitynotificationtopic.Setup,
identitypolicy.Setup,
receiptfilter.Setup,
receiptrule.Setup,
receiptruleset.Setup,
template.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}