mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[cloud] Add support for AWS China to elasticache_subnet_group role (#24286)
This commit is contained in:
parent
6f66e88bd8
commit
668092e95a
1 changed files with 2 additions and 5 deletions
|
@ -71,8 +71,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import boto
|
import boto
|
||||||
from boto.elasticache.layer1 import ElastiCacheConnection
|
from boto.elasticache import connect_to_region
|
||||||
from boto.regioninfo import RegionInfo
|
|
||||||
from boto.exception import BotoServerError
|
from boto.exception import BotoServerError
|
||||||
HAS_BOTO = True
|
HAS_BOTO = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
@ -115,9 +114,7 @@ def main():
|
||||||
|
|
||||||
"""Get an elasticache connection"""
|
"""Get an elasticache connection"""
|
||||||
try:
|
try:
|
||||||
endpoint = "elasticache.%s.amazonaws.com" % region
|
conn = connect_to_region(region_name=region, **aws_connect_kwargs)
|
||||||
connect_region = RegionInfo(name=region, endpoint=endpoint)
|
|
||||||
conn = ElastiCacheConnection(region=connect_region, **aws_connect_kwargs)
|
|
||||||
except boto.exception.NoAuthHandlerFound as e:
|
except boto.exception.NoAuthHandlerFound as e:
|
||||||
module.fail_json(msg=e.message)
|
module.fail_json(msg=e.message)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue