From 2796be1132d7a1ace13e055c0c56b54f61e3949c Mon Sep 17 00:00:00 2001 From: Robson Roberto Souza Peixoto <124390+robsonpeixoto@users.noreply.github.com> Date: Thu, 16 Aug 2018 01:58:01 -0300 Subject: [PATCH] Add AzureRMStorageAccount StorageV2 kind (#44242) close 38455 --- lib/ansible/modules/cloud/azure/azure_rm_storageaccount.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/azure/azure_rm_storageaccount.py b/lib/ansible/modules/cloud/azure/azure_rm_storageaccount.py index 67cb4522b6e..1cdc0ebc50e 100644 --- a/lib/ansible/modules/cloud/azure/azure_rm_storageaccount.py +++ b/lib/ansible/modules/cloud/azure/azure_rm_storageaccount.py @@ -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']) )