mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 10:20:26 -07:00
add ability to detect and update network tags.
This commit is contained in:
parent
ec093086ab
commit
881df11844
1 changed files with 9 additions and 0 deletions
|
@ -1229,8 +1229,17 @@ def update_fields(module, request, response):
|
|||
machine_type_update(module, request, response)
|
||||
if response.get('shieldedInstanceConfig') != request.get('shieldedInstanceConfig'):
|
||||
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')
|
||||
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')},
|
||||
)
|
||||
|
||||
def label_fingerprint_update(module, request, response):
|
||||
auth = GcpSession(module, 'compute')
|
||||
auth.post(
|
||||
|
|
Loading…
Add table
Reference in a new issue