Skip to content

Commit 0eb58eb

Browse files
committed
Remove references to internal variables.
This fixes #708, but I am not sure this is the ideal approach.
1 parent 9f2c5a2 commit 0eb58eb

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

roles/agent/meta/argument_specs.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ argument_specs:
4141

4242
checkmk_agent_registration_server_protocol:
4343
type: "str"
44-
default: "{{ checkmk_agent_server_protocol }}"
44+
default: "http"
4545
description:
4646
- Refer to the README for details.
4747

4848
checkmk_agent_registration_server:
4949
type: "str"
50-
default: "{{ checkmk_agent_server }}"
50+
default: "localhost"
5151
description:
5252
- Refer to the README for details.
5353

5454
checkmk_agent_registration_site:
5555
type: "str"
56-
default: "{{ checkmk_agent_site }}"
56+
default: "mysite"
5757
description:
5858
- Refer to the README for details.
5959

@@ -71,7 +71,7 @@ argument_specs:
7171

7272
checkmk_agent_user:
7373
type: "str"
74-
default: "{{ automation_user | default('automation') }}"
74+
default: "automation"
7575
description:
7676
- Refer to the README for details.
7777

@@ -83,15 +83,13 @@ argument_specs:
8383

8484
checkmk_agent_pass:
8585
type: "str"
86-
default: "{{ checkmk_var_automation_secret }}"
8786
description:
88-
- Refer to the README for details.
87+
- Refer to the README for details. This is mutually exclusive with 'checkmk_agent_secret'.
8988

9089
checkmk_agent_secret:
9190
type: "str"
92-
default: "{{ checkmk_var_automation_secret }}"
9391
description:
94-
- Refer to the README for details.
92+
- Refer to the README for details. This is mutually exclusive with 'checkmk_agent_pass'.
9593

9694
checkmk_agent_auto_activate:
9795
type: "bool"

0 commit comments

Comments
 (0)