fix typo in azure_rm_storageaccount (#4236)

reviewable/pr18780/r1
Ryan 10 years ago committed by Matt Davis
parent 53b4bd06f5
commit 810b40aee9

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

Loading…
Cancel
Save