modules: fix examples to use FQCN (#644)

* modules: fix examples to use FQCN

* fix

* fix

* fix
This commit is contained in:
Andrew Klychkov 2020-07-13 22:50:31 +03:00 committed by GitHub
commit 41cfdda6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
533 changed files with 2130 additions and 2130 deletions

View file

@ -139,7 +139,7 @@ author:
EXAMPLES = '''
- name: Create a load balancer
oneandone_load_balancer:
community.general.oneandone_load_balancer:
auth_token: oneandone_private_api_key
name: ansible load balancer
description: Testing creation of load balancer with ansible
@ -159,7 +159,7 @@ EXAMPLES = '''
wait_timeout: 500
- name: Destroy a load balancer
oneandone_load_balancer:
community.general.oneandone_load_balancer:
auth_token: oneandone_private_api_key
name: ansible load balancer
wait: true
@ -167,7 +167,7 @@ EXAMPLES = '''
state: absent
- name: Update a load balancer
oneandone_load_balancer:
community.general.oneandone_load_balancer:
auth_token: oneandone_private_api_key
load_balancer: ansible load balancer
name: ansible load balancer updated
@ -177,7 +177,7 @@ EXAMPLES = '''
state: update
- name: Add server to a load balancer
oneandone_load_balancer:
community.general.oneandone_load_balancer:
auth_token: oneandone_private_api_key
load_balancer: ansible load balancer updated
description: Adding server to a load balancer with ansible
@ -188,7 +188,7 @@ EXAMPLES = '''
state: update
- name: Remove server from a load balancer
oneandone_load_balancer:
community.general.oneandone_load_balancer:
auth_token: oneandone_private_api_key
load_balancer: ansible load balancer updated
description: Removing server from a load balancer with ansible
@ -199,7 +199,7 @@ EXAMPLES = '''
state: update
- name: Add rules to a load balancer
oneandone_load_balancer:
community.general.oneandone_load_balancer:
auth_token: oneandone_private_api_key
load_balancer: ansible load balancer updated
description: Adding rules to a load balancer with ansible
@ -219,7 +219,7 @@ EXAMPLES = '''
state: update
- name: Remove rules from a load balancer
oneandone_load_balancer:
community.general.oneandone_load_balancer:
auth_token: oneandone_private_api_key
load_balancer: ansible load balancer updated
description: Adding rules to a load balancer with ansible