我可以使用 REST API 在 AWX 中创建一个主机,但还没有找到如何通过 REST API 将该主机关联到一个组。(组已经通过 GUI 创建)。想知道如何通过 REST API 将组添加到主机。 使用蟒蛇:
PAYLOAD = {
'name': "myHost",
'inventory': "myInventory",
'description': "This is my awesome host."
}
r = requests.post(url=host_URL, data=json.dumps(PAYLOAD), headers={'content-type': 'application/json'})