Skip to content

Commit

Permalink
Enable more resources (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
zjj2wry authored Jul 12, 2022
1 parent 3050c0a commit 1bfc996
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pkg/controller/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ import (
"github.com/crossplane/crossplane-runtime/pkg/logging"

"github.com/crossplane/provider-aws/pkg/controller/config"
"github.com/crossplane/provider-aws/pkg/controller/ec2/address"
"github.com/crossplane/provider-aws/pkg/controller/ec2/internetgateway"
"github.com/crossplane/provider-aws/pkg/controller/ec2/natgateway"
"github.com/crossplane/provider-aws/pkg/controller/ec2/routetable"
"github.com/crossplane/provider-aws/pkg/controller/ec2/securitygroup"
"github.com/crossplane/provider-aws/pkg/controller/ec2/subnet"
"github.com/crossplane/provider-aws/pkg/controller/ec2/vpc"
"github.com/crossplane/provider-aws/pkg/controller/ec2/vpcendpoint"
"github.com/crossplane/provider-aws/pkg/controller/ec2/vpcendpointserviceconfiguration"
Expand Down Expand Up @@ -69,6 +74,11 @@ func Setup(mgr ctrl.Manager, l logging.Logger, rl workqueue.RateLimiter, poll ti
vpcendpoint.SetupVPCEndpoint,
vpcendpointserviceconfiguration.SetupVPCEndpointServiceConfiguration,
securitygroup.SetupSecurityGroup,
subnet.SetupSubnet,
internetgateway.SetupInternetGateway,
natgateway.SetupNatGateway,
routetable.SetupRouteTable,
address.SetupAddress,
} {
if err := setup(mgr, l, rl, poll); err != nil {
return err
Expand Down

0 comments on commit 1bfc996

Please sign in to comment.