1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

cs_loadbalancer_rule_member: doc fixes (#2184)

This commit is contained in:
René Moser 2016-05-09 21:39:00 +02:00 committed by Matt Clay
parent 3ecf8dc12b
commit 99bf53ea9a

View file

@ -50,7 +50,7 @@ options:
state:
description:
- Should the VMs be present or absent from the rule.
required: true
required: false
default: 'present'
choices: [ 'present', 'absent' ]
project:
@ -101,19 +101,19 @@ EXAMPLES = '''
pre_tasks:
- name: Remove from load balancer
local_action:
module: cs_loadbalancer_rule_member
name: balance_http
vm: "{{ ansible_hostname }}"
state: absent
module: cs_loadbalancer_rule_member
name: balance_http
vm: "{{ ansible_hostname }}"
state: absent
tasks:
# Perform update
post_tasks:
- name: Add to load balancer
local_action:
module: cs_loadbalancer_rule_member
name: balance_http
vm: "{{ ansible_hostname }}"
state: present
module: cs_loadbalancer_rule_member
name: balance_http
vm: "{{ ansible_hostname }}"
state: present
'''
RETURN = '''