TSIG keys not handled correctly
Closed this issue · 1 comments
stephan2012 commented
bind9_parser seems to not parse multiple TSIG key
s correctly. The configuration
key "ansible" {
algorithm hmac-sha256;
secret "redacted_key_1";
};
key "externaldns" {
algorithm hmac-sha256;
secret "redacted_key_2";
};
results in
"key": [
{
"algorithm": "hmac-sha256",
"key_id": "\"externaldns\"",
"secret": "redacted_key_2"
}
],
for result.asDict()
So, the first key
statement is missing.
stephan2012 commented
/assign