Add AzureRMStorageAccount StorageV2 kind (#44242)

close 38455
pull/44273/head
Robson Roberto Souza Peixoto 6 years ago committed by Yunge Zhu
parent ff6d4e6bf4
commit 2796be1132

@ -67,6 +67,7 @@ options:
default: 'Storage'
choices:
- Storage
- StorageV2
- BlobStorage
version_added: "2.2"
access_tier:
@ -165,7 +166,7 @@ class AzureRMStorageAccount(AzureRMModuleBase):
state=dict(default='present', choices=['present', 'absent']),
force=dict(type='bool', default=False),
tags=dict(type='dict'),
kind=dict(type='str', default='Storage', choices=['Storage', 'BlobStorage']),
kind=dict(type='str', default='Storage', choices=['Storage', 'StorageV2', 'BlobStorage']),
access_tier=dict(type='str', choices=['Hot', 'Cool'])
)

Loading…
Cancel
Save