parent
ff6d4e6bf4
commit
2796be1132
1 changed files with 2 additions and 1 deletions
|
@ -67,6 +67,7 @@ options:
|
||||||
default: 'Storage'
|
default: 'Storage'
|
||||||
choices:
|
choices:
|
||||||
- Storage
|
- Storage
|
||||||
|
- StorageV2
|
||||||
- BlobStorage
|
- BlobStorage
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
access_tier:
|
access_tier:
|
||||||
|
@ -165,7 +166,7 @@ class AzureRMStorageAccount(AzureRMModuleBase):
|
||||||
state=dict(default='present', choices=['present', 'absent']),
|
state=dict(default='present', choices=['present', 'absent']),
|
||||||
force=dict(type='bool', default=False),
|
force=dict(type='bool', default=False),
|
||||||
tags=dict(type='dict'),
|
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'])
|
access_tier=dict(type='str', choices=['Hot', 'Cool'])
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue