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:
parent
300aefcad2
commit
207974fc7c
2 changed files with 5 additions and 1 deletions
3
changelogs/fragments/azure_rm_storageaccount.yaml
Normal file
3
changelogs/fragments/azure_rm_storageaccount.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- add azure_rm_storageaccount support to StorageV2 kind. (https://github.com/ansible/ansible/pull/44242)
|
|
@ -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'])
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue