Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/crossplane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ go run -tags codegen cmd/ack-generate/main.go crossplane <resource name> \
--output <directory for provider>
```

See [Contributing New Resource Using ACK](https://github.com/crossplane/provider-aws/blob/master/CODE_GENERATION.md)
See [Contributing New Resource Using ACK](https://github.com/crossplane-contrib/provider-aws/blob/master/CODE_GENERATION.md)
for details.
4 changes: 2 additions & 2 deletions templates/crossplane/pkg/controller.go.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
cpresource "github.com/crossplane/crossplane-runtime/pkg/resource"
xpv1 "github.com/crossplane/crossplane-runtime/apis/common/v1"

svcapitypes "github.com/crossplane/provider-aws/apis/{{ .ServicePackageName }}/{{ .APIVersion}}"
awsclient "github.com/crossplane/provider-aws/pkg/clients"
svcapitypes "github.com/crossplane-contrib/provider-aws/apis/{{ .ServicePackageName }}/{{ .APIVersion}}"
awsclient "github.com/crossplane-contrib/provider-aws/pkg/clients"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion templates/crossplane/pkg/conversions.go.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/aws/aws-sdk-go/aws/awserr"
svcsdk "github.com/aws/aws-sdk-go/service/{{ .ServicePackageName }}"

svcapitypes "github.com/crossplane/provider-aws/apis/{{ .ServicePackageName }}/{{ .APIVersion}}"
svcapitypes "github.com/crossplane-contrib/provider-aws/apis/{{ .ServicePackageName }}/{{ .APIVersion}}"
)

// NOTE(muvaf): We return pointers in case the function needs to start with an
Expand Down