Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lab 2.1 failure: bigip_pool module unsupported params "password" "server" "user" #7

Open
jamesaffeld opened this issue Sep 10, 2019 · 1 comment

Comments

@jamesaffeld
Copy link

https://docs.ansible.com/ansible/latest/modules/bigip_pool_module.html says the parameters specified in the 2.1 lab playbook are supported but the task output is "fatal: [bigip]: FAILED! => {"changed" false, "msg": unsupported parameters for (bigip_pool) module: password, server, user, validate_certs ....

Did I not successfully install a bigip_pool module update? Can't tell because the web shell is so terrible (current line is below the bottom of the screen, no matter what the screen size/definition)

@jamesaffeld
Copy link
Author

jamesaffeld commented Sep 10, 2019

playbook syntax is incorrect in lab guide. Got it to work with the following:


  • name an example pool playbook
    hosts: bigip
    connection: local

    vars:
    provider:
    server: 10.1.1.4
    user: admin
    password: admin
    validate_certs: no

tasks:

  • name: Create web servers pool
    bigip_pool:
    name: web-servers
    lb_method: ratio-member
    provider: "{{ provider }}"
    description: "created by Ansible"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant