mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
Merge 6acff204b2
into 99ac225a1a
This commit is contained in:
commit
783b88d7c7
1 changed files with 14 additions and 0 deletions
|
@ -1237,8 +1237,22 @@ def update_fields(module, request, response):
|
||||||
machine_type_update(module, request, response)
|
machine_type_update(module, request, response)
|
||||||
if response.get('shieldedInstanceConfig') != request.get('shieldedInstanceConfig'):
|
if response.get('shieldedInstanceConfig') != request.get('shieldedInstanceConfig'):
|
||||||
shielded_instance_config_update(module, request, response)
|
shielded_instance_config_update(module, request, response)
|
||||||
|
if response.get("tags") != request.get("tags"):
|
||||||
|
tag_fingerprint_update(module,request,response)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def tag_fingerprint_update(module, request, response):
|
||||||
|
auth = GcpSession(module, 'compute')
|
||||||
|
if not module.params.get('tags'):
|
||||||
|
module.params['tags'] = {}
|
||||||
|
module.params['tags']['fingerprint'] = response.get('tags', {}).get('fingerprint')
|
||||||
|
auth.post(
|
||||||
|
''.join(["https://compute.googleapis.com/compute/v1/", "projects/{project}/zones/{zone}/instances/{name}/setTags"]).format(**module.params),
|
||||||
|
InstanceTags(module.params.get('tags', {}), module).to_request(),
|
||||||
|
)
|
||||||
|
|
||||||
def label_fingerprint_update(module, request, response):
|
def label_fingerprint_update(module, request, response):
|
||||||
auth = GcpSession(module, 'compute')
|
auth = GcpSession(module, 'compute')
|
||||||
auth.post(
|
auth.post(
|
||||||
|
|
Loading…
Add table
Reference in a new issue