diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-26 06:22:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-26 06:22:20 +0000 |
commit | 18bd2207b6c1977e99a93673a7be099e23f0f547 (patch) | |
tree | 40fd9e5913462a88be6ba24be6953383c5b39874 /ansible_collections/lowlydba/sqlserver/tests/integration | |
parent | Releasing progress-linux version 10.0.1+dfsg-1~progress7.99u1. (diff) | |
download | ansible-18bd2207b6c1977e99a93673a7be099e23f0f547.tar.xz ansible-18bd2207b6c1977e99a93673a7be099e23f0f547.zip |
Merging upstream version 10.1.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/lowlydba/sqlserver/tests/integration')
-rw-r--r-- | ansible_collections/lowlydba/sqlserver/tests/integration/targets/win_ag_listener/tasks/main.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ansible_collections/lowlydba/sqlserver/tests/integration/targets/win_ag_listener/tasks/main.yml b/ansible_collections/lowlydba/sqlserver/tests/integration/targets/win_ag_listener/tasks/main.yml index b4142a487..68604997a 100644 --- a/ansible_collections/lowlydba/sqlserver/tests/integration/targets/win_ag_listener/tasks/main.yml +++ b/ansible_collections/lowlydba/sqlserver/tests/integration/targets/win_ag_listener/tasks/main.yml @@ -25,8 +25,10 @@ ag_name: "{{ ag_name }}" listener_name: "{{ listener_name }}" port: "{{ port }}" - ip_address: "192.168.6.9" - subnet_mask: "255.255.255.0" + ip_address: + - "192.168.6.9" + subnet_mask: + - "255.255.255.0" tags: ["ag_listener"] block: - name: Enable hadr |