mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-10 11:11:29 -07:00
fix sample in docs (#55420)
This commit is contained in:
parent
339a0f4a8c
commit
22f666c962
13 changed files with 49 additions and 49 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue