diff --git a/lib/ansible/modules/cloud/azure/azure_rm_appserviceplan.py b/lib/ansible/modules/cloud/azure/azure_rm_appserviceplan.py index 9bb40252113..888dbf9e954 100644 --- a/lib/ansible/modules/cloud/azure/azure_rm_appserviceplan.py +++ b/lib/ansible/modules/cloud/azure/azure_rm_appserviceplan.py @@ -38,10 +38,9 @@ options: sku: description: - - The pricing tiers, e.g., F1, D1, B1, B2, B3, S1, P1, P1V2 etc. + - The pricing tiers, e.g., C(F1), C(D1), C(B1), C(B2), C(B3), C(S1), C(P1), C(P1V2) etc. - Please see U(https://azure.microsoft.com/en-us/pricing/details/app-service/plans/) for more detail. - - For linux app service plan, please see U(https://azure.microsoft.com/en-us/pricing/details/app-service/linux/) for more detail. - + - For Linux app service plan, please see U(https://azure.microsoft.com/en-us/pricing/details/app-service/linux/) for more detail. is_linux: description: - Describe whether to host webapp on Linux worker. @@ -54,12 +53,12 @@ options: state: description: - - Assert the state of the app service plan. - - Use C(present) to create or update an app service plan and C(absent) to delete it. + - Assert the state of the app service plan. + - Use C(present) to create or update an app service plan and C(absent) to delete it. default: present choices: - - absent - - present + - absent + - present extends_documentation_fragment: - azure @@ -97,7 +96,7 @@ EXAMPLES = ''' RETURN = ''' azure_appserviceplan: - description: Facts about the current state of the app service plan + description: Facts about the current state of the app service plan. returned: always type: dict sample: { diff --git a/lib/ansible/modules/cloud/azure/azure_rm_appserviceplan_facts.py b/lib/ansible/modules/cloud/azure/azure_rm_appserviceplan_facts.py index 5d867787f2c..4da8120b0a6 100644 --- a/lib/ansible/modules/cloud/azure/azure_rm_appserviceplan_facts.py +++ b/lib/ansible/modules/cloud/azure/azure_rm_appserviceplan_facts.py @@ -19,7 +19,7 @@ module: azure_rm_appserviceplan_facts version_added: "2.7" -short_description: Get azure app service plan facts. +short_description: Get azure app service plan facts description: - Get facts for a specific app service plan or all app service plans in a resource group, or all app service plan in current subscription.