mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
corrected version to 2.2. Ensure no vpc-id is returned if detached
This commit is contained in:
committed by
Matt Clay
parent
f4715032a9
commit
a824cd633f
@@ -22,7 +22,7 @@ description:
|
||||
- Deletes AWS VPN Virtual Gateways
|
||||
- Attaches Virtual Gateways to VPCs
|
||||
- Detaches Virtual Gateways from VPCs
|
||||
version_added: "2.1"
|
||||
version_added: "2.2"
|
||||
requirements: [ boto3 ]
|
||||
options:
|
||||
state:
|
||||
@@ -139,7 +139,7 @@ def get_vgw_info(vgws):
|
||||
for tag in vgw['Tags']:
|
||||
vgw_info['tags'][tag['Key']] = tag['Value']
|
||||
|
||||
if len(vgw['VpcAttachments']) != 0:
|
||||
if len(vgw['VpcAttachments']) != 0 and vgw['VpcAttachments'][0]['State'] == 'attached':
|
||||
vgw_info['vpc_id'] = vgw['VpcAttachments'][0]['VpcId']
|
||||
|
||||
return vgw_info
|
||||
@@ -537,7 +537,7 @@ def ensure_vgw_absent(client, module):
|
||||
changed = False
|
||||
deleted_vgw = None
|
||||
|
||||
result = get_vgw_info(deleted_vgw)
|
||||
result = deleted_vgw
|
||||
return changed, result
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user