erjac77 / ansible-module-f5bigip

Ansible module for F5 BIG-IP
Apache License 2.0
6 stars 3 forks source link
ansible big-ip bigip f5 f5-sdk networking

🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨

Ansible module for F5 BIG-IP (ansible-module-f5bigip) has been deprecated.
Please use our new Ansible Role for F5 systems (ansible-role-f5).

🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨

ANSIBLE MODULE FOR F5 BIG-IP

An Ansible module to perform specific operational and configuration tasks on F5 BIG-IP systems.

REQUIREMENTS

INSTALLATION

1) Install the F5 Common Utility Module for Ansible and all its dependencies (ansible, f5-sdk, six, etc.)

pip install git+https://github.com/erjac77/ansible-common-f5.git#egg=ansible-common-f5

2) Install the F5 BIG-IP Role from Ansible Galaxy

ansible-galaxy install erjac77.module-f5bigip

For alternative installation methods, see the Wiki.

EXAMPLE PLAYBOOK

- hosts: bigips
  connection: local
  roles:
    - erjac77.module-f5bigip

  tasks:

    - name: Create LTM Pool
      f5bigip_ltm_pool:
        f5_hostname: "{{ inventory_hostname }}"
        f5_username: admin
        f5_password: admin
        f5_port: 443
        name: my_pool
        partition: Common
        description: My Pool
        load_balancing_mode: least-connections-members
        state: present

You'll find more examples in the Wiki.

LICENSE

Apache 2.0

AUTHOR INFORMATION

CONTRIBUTORS