more robust

This commit is contained in:
Tyler Allen 2021-11-24 11:51:17 -06:00
parent 881df11844
commit 6acff204b2

View file

@ -1233,11 +1233,16 @@ def update_fields(module, request, response):
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),
{u'fingerprint': response.get('tags',{}).get('fingerprint'), u'items': module.params.get('tags', {}).get('items')},
InstanceTags(module.params.get('tags', {}), module).to_request(),
)
def label_fingerprint_update(module, request, response):