Set linode_Id with Linode Module

Please im relatively new with ansiible and having an issue.

Using the Linode Module to Create a new Linode instance. The Instance is created but with the wrong linode_id

  • name: Create linode machine
    linode:
    api_key: ‘My_Api_key’
    name: server
    plan: 1
    datacenter: 7
    distribution: 140
    password: ‘Some_password’
    linode_id: 12345678
    ssh_pub_key: ‘s…’
    wait: yes
    wait_timeout: 600
    state: present

I assume the Linode instance is supposed to have an Id of 12345678, but that’s not the Linode ID of the created instance.

Using 1.9.3

Please how do i correct this?