Add AzureRMStorageAccount StorageV2 kind backport (#44244)

* Add AzureRMStorageAccount StorageV2 kind (#44242)

close 38455

(cherry picked from commit 2796be1132)

* Add changelog to AzureRMStorageAccount StorageV2 kind
This commit is contained in:
Robson Roberto Souza Peixoto 2018-09-04 19:42:06 -03:00 committed by Matt Clay
parent 300aefcad2
commit 207974fc7c
2 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,3 @@
---
minor_changes:
- add azure_rm_storageaccount support to StorageV2 kind. (https://github.com/ansible/ansible/pull/44242)

View file

@ -67,6 +67,7 @@ options:
default: 'Storage'
choices:
- Storage
- StorageV2
- BlobStorage
version_added: "2.2"
access_tier:
@ -166,7 +167,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'])
)