summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2015-06-23 11:40:58 -0700
committerToshio Kuratomi <a.badger@gmail.com>2015-06-23 11:40:58 -0700
commitb088bcc378ea7e247361222fa5727ec991c33cd1 (patch)
treea632880d2baf5fad520d333f888ee409a62ba3af
parenta1181b490b7e00953a954878f3694a32378deca4 (diff)
parent1cfa21829b73b3c3ecbd55e273381842e4a495cd (diff)
downloadansible-modules-core-b088bcc378ea7e247361222fa5727ec991c33cd1.tar.gz
Merge pull request #1572 from smereczynski/devel
Added new instance sizes
-rw-r--r--cloud/azure/azure.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/cloud/azure/azure.py b/cloud/azure/azure.py
index 5469e385..f1eea465 100644
--- a/cloud/azure/azure.py
+++ b/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',
'Standard_G3',