mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-13 12:21:12 +00:00
fix typo in azure_rm_storageaccount (#4236)
This commit is contained in:
@@ -389,7 +389,7 @@ class AzureRMStorageAccount(AzureRMModuleBase):
|
||||
account_dict['tags'] = self.tags
|
||||
return account_dict
|
||||
sku = Sku(SkuName(self.account_type))
|
||||
sku.tier = SkuTier.standard if 'Standard' in self.account_type else SkuTier['Pemium']
|
||||
sku.tier = SkuTier.standard if 'Standard' in self.account_type else SkuTier.premium
|
||||
parameters = StorageAccountCreateParameters(sku, self.kind, self.location, tags=self.tags)
|
||||
self.log(str(parameters))
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user