0

我可以使用 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'})
4

1 回答 1

0

从来没有发现如何使用 REST API 做到这一点。使用 tower-cli 是否足够容易

1)找出你的组ID是什么:

tower-cli group list -a -i yourinventoryname

2)将主机添加到组中:

tower-cli host associate --host 10.1.2.103 --group 4
于 2019-08-06T13:32:13.587 回答