Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
AnilGadiyarHJ committed Nov 18, 2024
1 parent 2bb3492 commit 91efd4a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions plugins/modules/dns_auth_nsg.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,12 +547,13 @@ def main():
tsig_enabled=dict(type="bool"),
tsig_key=dict(
type="dict",
no_log=True,
options=dict(
algorithm=dict(type="str"),
comment=dict(type="str"),
key=dict(type="str"),
key=dict(type="str", no_log=True),
name=dict(type="str"),
secret=dict(type="str"),
secret=dict(type="str", no_log=True),
),
),
type=dict(type="str"),
Expand All @@ -568,12 +569,13 @@ def main():
tsig_enabled=dict(type="bool"),
tsig_key=dict(
type="dict",
no_log=True,
options=dict(
algorithm=dict(type="str"),
comment=dict(type="str"),
key=dict(type="str"),
key=dict(type="str", no_log=True),
name=dict(type="str"),
secret=dict(type="str"),
secret=dict(type="str", no_log=True),
),
),
),
Expand Down

0 comments on commit 91efd4a

Please sign in to comment.