From 9d4b252f565c765cfd1f6c7de1f506ffb26a4462 Mon Sep 17 00:00:00 2001 From: Michal Smereczynski Date: Mon, 22 Jun 2015 13:10:09 +0200 Subject: [PATCH] Added new Premium Storage instance sizes and case-related documentation clarification. --- lib/ansible/modules/cloud/azure/azure.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/azure/azure.py b/lib/ansible/modules/cloud/azure/azure.py index 1c10dcb43be..45a4b1f78ff 100644 --- a/lib/ansible/modules/cloud/azure/azure.py +++ b/lib/ansible/modules/cloud/azure/azure.py @@ -53,7 +53,7 @@ options: default: null role_size: description: - - azure role size for the new virtual machine (e.g., Small, ExtraLarge, A6) + - azure role size for the new virtual machine (e.g., Small, ExtraLarge, A6). You have to pay attention to the fact that instances of type G and DS are not available in all regions (locations). Make sure if you selected the size and type of instance available in your chosen location. required: false default: Small endpoints: @@ -235,6 +235,14 @@ AZURE_ROLE_SIZES = ['ExtraSmall', 'Standard_D12', 'Standard_D13', 'Standard_D14', + 'Standard_DS1', + 'Standard_DS2', + 'Standard_DS3', + 'Standard_DS4', + 'Standard_DS11', + 'Standard_DS12', + 'Standard_DS13', + 'Standard_DS14', 'Standard_G1', 'Standard_G2', 'Sandard_G3',