mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
use simpler ec2_connect ec2 util call
This allows boto profile use
This commit is contained in:
parent
14720b54ac
commit
2250a95638
1 changed files with 1 additions and 14 deletions
|
@ -599,20 +599,7 @@ def main():
|
||||||
|
|
||||||
state = module.params.get('state')
|
state = module.params.get('state')
|
||||||
|
|
||||||
ec2_url, aws_access_key, aws_secret_key, region = get_ec2_creds(module)
|
vpc_conn = ec2_connect(module)
|
||||||
|
|
||||||
# If we have a region specified, connect to its endpoint.
|
|
||||||
if region:
|
|
||||||
try:
|
|
||||||
vpc_conn = boto.vpc.connect_to_region(
|
|
||||||
region,
|
|
||||||
aws_access_key_id=aws_access_key,
|
|
||||||
aws_secret_access_key=aws_secret_key
|
|
||||||
)
|
|
||||||
except boto.exception.NoAuthHandlerFound, e:
|
|
||||||
module.fail_json(msg = str(e))
|
|
||||||
else:
|
|
||||||
module.fail_json(msg="region must be specified")
|
|
||||||
|
|
||||||
if module.params.get('state') == 'absent':
|
if module.params.get('state') == 'absent':
|
||||||
vpc_id = module.params.get('vpc_id')
|
vpc_id = module.params.get('vpc_id')
|
||||||
|
|
Loading…
Reference in a new issue