aws-rds-cookbook
aws-rds-cookbook copied to clipboard
Use aws-sdk-v1
Is there are reason for this change?
I was going to submit a similar PR. The reason for this is that I now have cookbooks that depend on aws-sdk v2, and this one which requires aws-sdk-v1. Although I'm not sure this PR will really solve my issue. In order to fix my issue, I had to change line 84 in libraries/rds.rb to "require 'aws-sdk-v1'". This allows you to have both aws-sdk versions installed without conflicts. Of course, the other alternative would be to replace all references to "AWS::RDS" to "Aws::RDS" in order to support aws-sdk v2. thanks.