Update sync_ecs.py

main
StarsL.cn 2025-02-18 09:25:45 +08:00 committed by GitHub
parent 57d4d7a957
commit 338200fca0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -73,6 +73,13 @@ def w2consul(vendor,account,region,ecs_dict):
if ecstag['TagKey'].encode().isalnum():
ecstag_dict[ecstag['TagKey']] = ecstag['TagValue']
data['Meta'].update(ecstag_dict)
if vendor == 'tencent_cloud' and v['ecstag'] != []:
ecstag_dict = {}
for ecstag in v['ecstag']:
ecstag_dict[ecstag['Key']] = ecstag['Value']
data['Meta'].update(ecstag_dict)
reg = requests.put(puturl, headers=headers, data=json.dumps(data))
if reg.status_code == 200:
pass