-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_cloudfront_setup.go
executable file
·50 lines (45 loc) · 2.19 KB
/
zz_cloudfront_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"
cachepolicy "github.com/upbound/provider-aws/internal/controller/cloudfront/cachepolicy"
distribution "github.com/upbound/provider-aws/internal/controller/cloudfront/distribution"
fieldlevelencryptionconfig "github.com/upbound/provider-aws/internal/controller/cloudfront/fieldlevelencryptionconfig"
fieldlevelencryptionprofile "github.com/upbound/provider-aws/internal/controller/cloudfront/fieldlevelencryptionprofile"
function "github.com/upbound/provider-aws/internal/controller/cloudfront/function"
keygroup "github.com/upbound/provider-aws/internal/controller/cloudfront/keygroup"
monitoringsubscription "github.com/upbound/provider-aws/internal/controller/cloudfront/monitoringsubscription"
originaccesscontrol "github.com/upbound/provider-aws/internal/controller/cloudfront/originaccesscontrol"
originaccessidentity "github.com/upbound/provider-aws/internal/controller/cloudfront/originaccessidentity"
originrequestpolicy "github.com/upbound/provider-aws/internal/controller/cloudfront/originrequestpolicy"
publickey "github.com/upbound/provider-aws/internal/controller/cloudfront/publickey"
realtimelogconfig "github.com/upbound/provider-aws/internal/controller/cloudfront/realtimelogconfig"
responseheaderspolicy "github.com/upbound/provider-aws/internal/controller/cloudfront/responseheaderspolicy"
)
// Setup_cloudfront creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_cloudfront(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
cachepolicy.Setup,
distribution.Setup,
fieldlevelencryptionconfig.Setup,
fieldlevelencryptionprofile.Setup,
function.Setup,
keygroup.Setup,
monitoringsubscription.Setup,
originaccesscontrol.Setup,
originaccessidentity.Setup,
originrequestpolicy.Setup,
publickey.Setup,
realtimelogconfig.Setup,
responseheaderspolicy.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}