-
Notifications
You must be signed in to change notification settings - Fork 378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complete AWS SDK v2 Migration #855
Conversation
Signed-off-by: Muvaffak Onus <[email protected]>
@@ -206,7 +206,7 @@ type EncryptionConfiguration struct { | |||
// supports symmetric customer managed CMKs. For more information, see Using | |||
// Symmetric and Asymmetric Keys (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html) | |||
// in the AWS Key Management Service Developer Guide. | |||
ReplicaKmsKeyID string `json:"replicaKmsKeyId"` | |||
ReplicaKmsKeyID *string `json:"replicaKmsKeyId"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the reasoning behind these type changes. I see that some changed from pointer and some to a pointer.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's just what the new version of the SDK expects
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
Signed-off-by: Muvaffak Onus <[email protected]>
Description of your changes
There were a few things missing in #602 . This PR aims to fix those and updates the SDK to the latest version of v2 as of today along with crossplane-runtime.
I have:
make reviewable test
to ensure this PR is ready for review.How has this code been tested
Compiles,
make reviewable
and unit tests.