chef-boneyard / chef-provisioning-aws

AWS driver and resources for Chef that uses the AWS SDK
Apache License 2.0
142 stars 121 forks source link

Update existing resources to AWS SDK V2 #227

Open tyler-ball opened 9 years ago

tyler-ball commented 9 years ago

This depends on https://github.com/chef/chef-provisioning-aws/issues/216

TODO: Create a check list of resources/providers that need to be updated to leverage the V2 SDK instead of the V1. Ensure each resource we update has tests written before updating so we can verify that the update does not break existing resources.

christinedraper commented 8 years ago

Is there a way to tell which resources are using V2 API vs V1? I just got caught out because aws_autoscaling_group is still on V1...

tyler-ball commented 8 years ago

@christinedraper Unfortunately not :( The aws_sdk_type will start with Aws instead of AWS like in aws_iam_role. So the best way I do it is with a ctrl+f on the code base and search for ::Aws::

christinedraper commented 8 years ago

That counts as 'a way to tell'. Thanks!