fix(azure_rm_containerregistry): Fixed sku idempostency (#61009)
This commit is contained in:
parent
064e8e1ef4
commit
dfc023209f
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue