Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add docs to configure scan interval #72

Merged
merged 1 commit into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ In addition we support the following variables:
| `update_windows_enabled` | set to true if you want to enable the update task for windows via scheduled task |
| `update_windows_interval` | define the update interval in days for the cnspec update |
| `update_windows_time` | define the time at which the task is to be carried out |
| `timer` | define the timer to set a scan interval in minutes. The default is 60. |
| `splay` | define the delay in the scan timing |

```yaml
---
Expand Down
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ force_registration: false
# if 'manual' is set, the user need to set `registration_token`
registration_token_retrieval: "manual"

timer: ""
splay: ""
timer: "60"
splay: "60"

# annotation/ tags for the node
annotations: ""
Expand Down
Loading