Skip to content

Commit

Permalink
Remove references to internal variables.
Browse files Browse the repository at this point in the history
This fixes #708, but I am not sure this is the ideal approach.
  • Loading branch information
robin-checkmk committed Jan 13, 2025
1 parent 9f2c5a2 commit 0eb58eb
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions roles/agent/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ argument_specs:

checkmk_agent_registration_server_protocol:
type: "str"
default: "{{ checkmk_agent_server_protocol }}"
default: "http"
description:
- Refer to the README for details.

checkmk_agent_registration_server:
type: "str"
default: "{{ checkmk_agent_server }}"
default: "localhost"
description:
- Refer to the README for details.

checkmk_agent_registration_site:
type: "str"
default: "{{ checkmk_agent_site }}"
default: "mysite"
description:
- Refer to the README for details.

Expand All @@ -71,7 +71,7 @@ argument_specs:

checkmk_agent_user:
type: "str"
default: "{{ automation_user | default('automation') }}"
default: "automation"
description:
- Refer to the README for details.

Expand All @@ -83,15 +83,13 @@ argument_specs:

checkmk_agent_pass:
type: "str"
default: "{{ checkmk_var_automation_secret }}"
description:
- Refer to the README for details.
- Refer to the README for details. This is mutually exclusive with 'checkmk_agent_secret'.

checkmk_agent_secret:
type: "str"
default: "{{ checkmk_var_automation_secret }}"
description:
- Refer to the README for details.
- Refer to the README for details. This is mutually exclusive with 'checkmk_agent_pass'.

checkmk_agent_auto_activate:
type: "bool"
Expand Down

0 comments on commit 0eb58eb

Please sign in to comment.