fix sample in docs (#55420)

This commit is contained in:
Yunge Zhu 2019-04-17 13:41:58 +08:00 committed by ansibot
parent 339a0f4a8c
commit 22f666c962
13 changed files with 49 additions and 49 deletions

View file

@ -63,7 +63,7 @@ EXAMPLES = '''
- name: Create a CDN profile
azure_rm_cdnprofile:
resource_group: myResourceGroup
name: cdntest
name: myCDN
sku: standard_akamai
tags:
testing: testing
@ -71,7 +71,7 @@ EXAMPLES = '''
- name: Delete the CDN profile
azure_rm_cdnprofile:
resource_group: myResourceGroup
name: cdntest
name: myCDN
state: absent
'''
RETURN = '''
@ -80,7 +80,7 @@ id:
returned: always
type: dict
example:
id: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourcegroups/cdntest/providers/Microsoft.Cdn/profiles/cdntest
id: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourcegroups/myResourceGroup/providers/Microsoft.Cdn/profiles/myCDN
'''
from ansible.module_utils.azure_rm_common import AzureRMModuleBase