Azure modules: more doc updates (#54077)

* more doc updates

* fixed sanity
This commit is contained in:
Zim Kalinowski 2019-03-21 02:12:17 +08:00 committed by Alicia Cozine
commit 7b75563c9b
7 changed files with 43 additions and 33 deletions

View file

@ -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"
}
'''