Avoid duplicate Azure storage account types.

(cherry picked from commit ae4d5e3257)
pull/45537/head
Matt Clay 6 years ago
parent f3b394cf4c
commit 66cfb3d91e

@ -174,7 +174,8 @@ class AzureRMStorageAccount(AzureRMModuleBase):
if HAS_AZURE:
for key in self.storage_models.SkuName:
self.module_arg_spec['account_type']['choices'].append(getattr(key, 'value'))
if getattr(key, 'value') not in self.module_arg_spec['account_type']['choices']:
self.module_arg_spec['account_type']['choices'].append(getattr(key, 'value'))
self.results = dict(
changed=False,

Loading…
Cancel
Save