Documentation remove escape r (#50277)

* A colon is not described

* dddd

* Update branch
This commit is contained in:
curry9999
2018-12-27 22:14:20 +09:00
committed by John R Barker
parent cda4010024
commit 9fb4e24660
5 changed files with 15 additions and 15 deletions

View File

@@ -12,7 +12,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
'supported_by': 'community'}
DOCUMENTATION = r'''
DOCUMENTATION = '''
---
module: aws_config_aggregation_authorization
short_description: Manage cross-account AWS Config authorizations
@@ -39,7 +39,7 @@ extends_documentation_fragment:
- ec2
'''
EXAMPLES = r'''
EXAMPLES = '''
- name: Get current account ID
aws_caller_facts:
register: whoami
@@ -49,7 +49,7 @@ EXAMPLES = r'''
authorzed_aws_region: us-east-1
'''
RETURN = r'''#'''
RETURN = '''#'''
try:

View File

@@ -12,7 +12,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
'supported_by': 'community'}
DOCUMENTATION = r'''
DOCUMENTATION = '''
---
module: aws_config_aggregator
short_description: Manage AWS Config aggregations across multiple accounts
@@ -63,7 +63,7 @@ extends_documentation_fragment:
- ec2
'''
EXAMPLES = r'''
EXAMPLES = '''
- name: Create cross-account aggregator
aws_config_aggregator:
name: test_config_rule
@@ -76,7 +76,7 @@ EXAMPLES = r'''
all_aws_regions: yes
'''
RETURN = r'''#'''
RETURN = '''#'''
try:

View File

@@ -12,7 +12,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
'supported_by': 'community'}
DOCUMENTATION = r'''
DOCUMENTATION = '''
---
module: aws_config_delivery_channel
short_description: Manage AWS Config delivery channels
@@ -50,7 +50,7 @@ extends_documentation_fragment:
- ec2
'''
EXAMPLES = r'''
EXAMPLES = '''
- name: Create Delivery Channel for AWS Config
aws_config_delivery_channel:
name: test_delivery_channel
@@ -60,7 +60,7 @@ EXAMPLES = r'''
delivery_frequency: 'Twelve_Hours'
'''
RETURN = r'''#'''
RETURN = '''#'''
try:

View File

@@ -12,7 +12,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
'supported_by': 'community'}
DOCUMENTATION = r'''
DOCUMENTATION = '''
---
module: aws_config_recorder
short_description: Manage AWS Config Recorders
@@ -66,7 +66,7 @@ extends_documentation_fragment:
- ec2
'''
EXAMPLES = r'''
EXAMPLES = '''
- name: Create Configuration Recorder for AWS Config
aws_config_recorder:
name: test_configuration_recorder
@@ -77,7 +77,7 @@ EXAMPLES = r'''
include_global_types: true
'''
RETURN = r'''#'''
RETURN = '''#'''
try:

View File

@@ -12,7 +12,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
'supported_by': 'community'}
DOCUMENTATION = r'''
DOCUMENTATION = '''
---
module: aws_config_rule
short_description: Manage AWS Config resources
@@ -86,7 +86,7 @@ extends_documentation_fragment:
- ec2
'''
EXAMPLES = r'''
EXAMPLES = '''
- name: Create Config Rule for AWS Config
aws_config_rule:
name: test_config_rule
@@ -101,7 +101,7 @@ EXAMPLES = r'''
'''
RETURN = r'''#'''
RETURN = '''#'''
try: