Skip to content

Commit

Permalink
Add cross namespace resource reference support in runtime (#152)
Browse files Browse the repository at this point in the history
Issue [#1777](aws-controllers-k8s/community#1777)

Description of changes:
* Added namespace string to AWSResourceReference struct
* Needs testing
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
  • Loading branch information
michaelhtm authored Jul 19, 2024
1 parent ebeff35 commit a132c88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apis/core/v1alpha1/identifiers.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,6 @@ type AWSResourceReferenceWrapper struct {
// AWSResourceReference provides all the values necessary to reference another
// k8s resource for finding the identifier(Id/ARN/Name)
type AWSResourceReference struct {
Name *string `json:"name,omitempty"`
Name *string `json:"name,omitempty"`
Namespace *string `json:"namespace,omitempty"`
}

0 comments on commit a132c88

Please sign in to comment.