Avoid duplicate Azure storage account types.

This commit is contained in:
Matt Clay 2018-09-11 10:23:54 -07:00
parent 8ae14bebda
commit ae4d5e3257

View file

@ -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,