mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 09:54:02 -07:00
Azure modules: more doc updates (#54077)
* more doc updates * fixed sanity
This commit is contained in:
parent
ed9c7c9fb8
commit
7b75563c9b
7 changed files with 43 additions and 33 deletions
|
@ -73,25 +73,25 @@ author:
|
|||
EXAMPLES = '''
|
||||
- name: Create a windows app service plan
|
||||
azure_rm_appserviceplan:
|
||||
name: "windowsplan1"
|
||||
resource_group: myResourceGroup
|
||||
location: "eastus"
|
||||
name: myAppPlan
|
||||
location: eastus
|
||||
sku: S1
|
||||
|
||||
- name: Create a linux app service plan
|
||||
azure_rm_appserviceplan:
|
||||
resource_group: myResourceGroup
|
||||
name: "linuxplan1"
|
||||
location: "eastus"
|
||||
name: myAppPlan
|
||||
location: eastus
|
||||
sku: S1
|
||||
is_linux: true
|
||||
number_of_workers: 1
|
||||
|
||||
- name: update sku of existing windows app service plan
|
||||
azure_rm_appserviceplan:
|
||||
name: "windowsplan2"
|
||||
resource_group: myResourceGroup
|
||||
location: "eastus"
|
||||
name: myAppPlan
|
||||
location: eastus
|
||||
sku: S2
|
||||
'''
|
||||
|
||||
|
@ -101,7 +101,7 @@ azure_appserviceplan:
|
|||
returned: always
|
||||
type: dict
|
||||
sample: {
|
||||
"id": "/subscriptions/<subs_id>/resourceGroups/ansiblewebapp1_plan/providers/Microsoft.Web/serverfarms/win_appplan11"
|
||||
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Web/serverfarms/myAppPlan"
|
||||
}
|
||||
'''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue