I have a tag:
...
"tagOwners": {
"tag:home": ["xxx@github"]
}
...
As soon as I attach this tag (home
) to a machine, it disappears from the user xxx@github
’s machine list.
This is reflected in the fact that the following ACL does not grant access, whilst I believe it should:
...
"acls": [
{
"action": "accept",
"src": ["xxx@github"],
"dst": ["*:*"],
},
]
...
It only works when src
is set to tag:home
.
The documentation has an example which suggests this should work (I have also tried it this way, with the user in a group):
...
"acls": [
{
"action": "accept",
"src": ["tag:webserver", "group:sre"],
"dst": ["tag:database:*"]
}
...