[ec2_vpc_peer] Remove use of DryRun since the module doesn't support check mode (#34062)

pull/34069/head
Sloane Hertel 7 years ago committed by GitHub
parent 1a59247f27
commit bf8d695ec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -281,7 +281,6 @@ def create_peer_connection(client, module):
params['PeerRegion'] = module.params.get('peer_region')
if module.params.get('peer_owner_id'):
params['PeerOwnerId'] = str(module.params.get('peer_owner_id'))
params['DryRun'] = module.check_mode
peering_conns = describe_peering_connections(params, client)
for peering_conn in peering_conns['VpcPeeringConnections']:
pcx_id = peering_conn['VpcPeeringConnectionId']
@ -311,7 +310,6 @@ def remove_peer_connection(client, module):
params['PeerRegion'] = module.params.get('peer_region')
if module.params.get('peer_owner_id'):
params['PeerOwnerId'] = str(module.params.get('peer_owner_id'))
params['DryRun'] = module.check_mode
peering_conns = describe_peering_connections(params, client)
if not peering_conns:
module.exit_json(changed=False)
@ -338,7 +336,6 @@ def accept_reject(state, client, module):
changed = False
params = dict()
params['VpcPeeringConnectionId'] = module.params.get('peering_id')
params['DryRun'] = module.check_mode
if peer_status(client, module) != 'active':
try:
if state == 'accept':

Loading…
Cancel
Save