cloudify-incubator / cloudify-awssdk-plugin

Next generation of Cloudify AWS support.
Apache License 2.0
3 stars 6 forks source link

Make sure we clean up properties #128

Closed EarthmanT closed 6 years ago

EarthmanT commented 6 years ago

A user ran into a problem with cloudify.nodes.aws.ec2.CustomerGateway.

They ran install -> uninstall -> install.

Expected result: Customer gw will be created, then removed then new one gw instance will be created Actual result: Customer gw is created, then removed then workflow fails with error that gw is in delete state

It takes AWS up to 1hr to fully delete a customer gateway. We need to make sure that we can avoid leaving dirty properties.

It's possible that we are not handling properties cleanly for many or all resources. So check that also.

EarthmanT commented 6 years ago

Fixed in #132 #133