Hi,
Recently upgraded to ansible 2.5rc2.
When running a role "bigip_check" I noticed an argument that is not defined 
anywhere is used. "provider"


fatal: [10.255.111.175]: FAILED! => {
    "changed": false,
    "invocation": {
        "module_args": {
            "host": "10.255.111.175",
            "interval": 10,
            "password": "admin",
*            "provider": {*
*                "password": "admin",*
*                "server": "10.255.111.175",*
*                "server_port": 443,*
*                "ssh_keyfile": null,*
*                "timeout": 40,*
*                "transport": "rest",*
*                "user": null,*
*                "validate_certs": null*
            },
            "reload": false,
            "save_config": false,
            "timeout": 40,
            "username": "admin"
        }
    },
    "msg": "Unsupported parameters for (bigip_check) module: *provider 
*Supported 
parameters include: host, interval, password, reload, save_config, timeout, 
username"

Not sure where its coming from. Not passed into task?

  - name: Check if the BigIP is ready to accept commands
    bigip_check:
      host: "{{inventory_hostname}}"
      password: "{{f5.default.password.admin}}"
      username: "{{f5.username}}"
      reload: false
      save_config: false
      timeout: "{{check_timeout}}"
      interval: 10
      
  - debug:
      msg: "{{bigip.version}} {{bigip.marketingName}} {{bigip.build}} 
{{bigip.chassisId}}"
      verbosity: 1

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/7452491a-28b8-4cba-90f5-c7dc1832ee74%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to