Update plugins/modules/gcp_compute_subnetwork.py

Co-authored-by: Yusuke Tsutsumi <tsutsumi.yusuke@gmail.com>
This commit is contained in:
Jimmy CUI 2023-03-04 13:17:01 -05:00 committed by GitHub
parent 46873971a7
commit 5a2a6f2931
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -355,7 +355,7 @@ def main():
if fetch:
if state == 'present':
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, please change the name or region" % fetch['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)