fix(azure_rm_containerregistry): Fixed sku idempostency (#61009)

pull/62066/head^2
Marian Gappa 5 years ago committed by Yunge Zhu
parent 064e8e1ef4
commit dfc023209f

@ -274,7 +274,7 @@ class AzureRMContainerRegistry(AzureRMModuleBase):
to_do = Actions.NoAction
if (self.location is not None) and self.location != response['location']:
to_do = Actions.Update
elif (self.sku is not None) and self.location != response['sku']:
elif (self.sku is not None) and self.sku != response['sku']:
to_do = Actions.Update
else:
to_do = Actions.NoAction

Loading…
Cancel
Save