mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fix typo in azure_rm_vm plan
This commit is contained in:
parent
1140d6ecd7
commit
1e340b1940
1 changed files with 1 additions and 1 deletions
|
@ -879,7 +879,7 @@ class AzureRMVirtualMachine(AzureRMModuleBase):
|
|||
plan = None
|
||||
if self.plan:
|
||||
plan = Plan(name=self.plan.get('name'), product=self.plan.get('product'), publisher=self.plan.get('publisher'),
|
||||
promotion_code=self.product.get('promotion_code'))
|
||||
promotion_code=self.plan.get('promotion_code'))
|
||||
|
||||
vm_resource = VirtualMachine(
|
||||
self.location,
|
||||
|
|
Loading…
Reference in a new issue