ansible/cloud
Alex Kessinger 4308ae25c4 Fix a argument mismatch in elasticache
I think in this commit 720aeffca2

There was bug introduced where the ElastiCacheManager init method has
a number of positional arguments like so.

```py
    def __init__(self, module, name, engine, cache_engine_version, node_type,
                 num_nodes, cache_port, parameter_group, cache_subnet_group,
                 cache_security_groups, security_group_ids, zone, wait,
                 hard_modify, region, **aws_connect_kwargs):
```

But then later in the code the positional arguments are passed in
like this.

```py
    elasticache_manager = ElastiCacheManager(module, name, engine,
                                             cache_engine_version, node_type,
                                             num_nodes, cache_port,
                                             cache_subnet_group,
                                             cache_security_groups,
                                             security_group_ids, parameter_group, zone, wait,
                                             hard_modify, region, **aws_connect_kwargs)
```

If you count, you can see that cache_subnet_group, is being passed in
where the manager expects to see parameter_group.
2015-09-29 16:51:26 -07:00
..
amazon Fix a argument mismatch in elasticache 2015-09-29 16:51:26 -07:00
azure ensure password or ssh cert specified 2015-07-09 13:33:46 -04:00
digital_ocean Updating cloud modules with proper github author information 2015-06-15 14:41:22 -04:00
docker Updated PR based on comments 2015-09-08 16:19:26 +01:00
google Delete dead and broken code 2015-08-24 20:06:53 +02:00
linode Updating cloud modules with proper github author information 2015-06-15 14:41:22 -04:00
openstack Merge pull request #250 from saito-hideki/bug/249 2015-09-17 11:25:35 -04:00
rackspace Docs fixes 2015-09-28 08:22:36 -07:00
vmware Merge pull request #1757 from gutoandreollo/devel 2015-09-14 15:08:47 -04:00
__init__.py package files 2014-09-26 11:05:47 -04:00