mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 02:40:29 -07:00
Merge 5a2a6f2931
into 99ac225a1a
This commit is contained in:
commit
d7613bd7b9
1 changed files with 5 additions and 1 deletions
|
@ -325,6 +325,7 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
||||||
import json
|
import json
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Main
|
# Main
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -360,7 +361,10 @@ def main():
|
||||||
|
|
||||||
if fetch:
|
if fetch:
|
||||||
if state == 'present':
|
if state == 'present':
|
||||||
if is_different(module, fetch):
|
if module.params['network']['selfLink'] != fetch['network']: # found difference on same subnet within the same VPC network
|
||||||
|
module.fail_json(msg="Subnet already exists in a different VPC network: %s" % fetch['network'])
|
||||||
|
changed = False
|
||||||
|
elif is_different(module, fetch):
|
||||||
update(module, self_link(module), kind, fetch)
|
update(module, self_link(module), kind, fetch)
|
||||||
fetch = fetch_resource(module, self_link(module), kind)
|
fetch = fetch_resource(module, self_link(module), kind)
|
||||||
changed = True
|
changed = True
|
||||||
|
|
Loading…
Add table
Reference in a new issue