{"id":18797806,"url":"https://github.com/networktocode/netscaler-ansible","last_synced_at":"2025-04-13T16:32:23.849Z","repository":{"id":89053972,"uuid":"91131222","full_name":"networktocode/netscaler-ansible","owner":"networktocode","description":"Ansible Modules to manage Citrix Netscaler devices ","archived":true,"fork":false,"pushed_at":"2018-12-20T20:59:32.000Z","size":188,"stargazers_count":12,"open_issues_count":0,"forks_count":9,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-03-05T17:39:59.608Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/networktocode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"contributing.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-05-12T21:32:22.000Z","updated_at":"2024-11-14T20:59:26.000Z","dependencies_parsed_at":"2023-06-13T17:54:05.165Z","dependency_job_id":null,"html_url":"https://github.com/networktocode/netscaler-ansible","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networktocode%2Fnetscaler-ansible","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networktocode%2Fnetscaler-ansible/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networktocode%2Fnetscaler-ansible/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networktocode%2Fnetscaler-ansible/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/networktocode","download_url":"https://codeload.github.com/networktocode/netscaler-ansible/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248743941,"owners_count":21154773,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T22:09:39.224Z","updated_at":"2025-04-13T16:32:23.539Z","avatar_url":"https://github.com/networktocode.png","language":"Python","funding_links":[],"categories":["Non-Core Ansible Modules"],"sub_categories":["NETCONF"],"readme":"\n# Ansible Modules for Netscaler Nitro API\n\n* [Introduction](#introduction)\n* [Module Summary](#modules)\n* [Installation](#installation)\n* [Detailed Module Documentation](#full-module-documentation)\n* [Module Examples](#examples)\n* [Contributing](#contributing)\n\n# Introduction\n\nThis repository includes a number of Ansible modules to automate Citrix Netscaler devices using the Nitro API.\n\n# Modules\n\nHere is a brief overview of all modules included in this repository.\n\n* **netscaler_server**\n  + Used to create, update, and delete server objects. \n  + Returns the existing configuration for the server object and the configuration sent to the Netscaler API.\n* **netscaler_servicegroup**\n  + Used to create, update, and delete service group objects.\n  + Returns the existing configuration for the service group and the configuration sent to the Netscaler API.\n* **netscaler_lbvserver**\n  + Used to create, update, and delete lb vserver objects.\n  + Returns the existing configuration for the lb vserver and the configuration sent to the Netscaler API.\n* **netscaler_lbmonitor**\n  + Used to create, update, and delete lb monitor objects.\n  + Returns the existing configuration for the lb monitor and the configuration sent to the Netscaler API.\n* **netscaler_servicegroup_server**\n  + Used to create and delete service group to server bindings. \n  + Returns all existing server objects bound to the service group, the existing configuration for the particular service group to server pair, and the configuration sent to the Netscaler API. \n* **netscaler_servicegroup_monitor**\n  + Used to create and delete service group to lb monitor bindings. \n  + Returns all existing lb monitors bound to the service group, the existing configuration for the particular service group to lb monitor pair, and the configuration sent to the Netscaler API. \n* **netscaler_lbvserver_servicegroup**\n  + Used to create and delete lb vserver to service group bindings. \n  + Returns all existing service groups bound to the lb vserver, the existing configuration for the particular lb vserver to service group pair, and the configuration sent to the Netscaler API. \n* **netscaler_lbvserver_certkey**\n  + Used to create, update, and delete lb vserver to SSl cert key bindings. \n  + Returns all existing SSl cert keys bound to the lb vserver, the existing configuration for the particular lb vserver to SSL cert key pair, and the configuration sent to the Netscaler API. \n* **netscaler_facts**\n  + Used to gather facts about the Netscaler system and configuration.\n  + Returns system and hardware info, cli configuration, and json configurations for servers, service groups, lb vservers, and lb monitors.\n* **netscaler_save_config**\n  + Used to save the running configuration on the Netscaler to the device.\n  + Returns the status code of the API request to save the configuration.\n\n# Installation\n\nYou need to perform **two** steps to start using these modules.\n\n1. Ensure this repository is in your Ansible module search path.\n2. Install Dependencies.\n\n### Locate your search path\nHere is how you can locate your search path:\n```\n$ ansible --version\nansible 2.1.1.0\n  config file = /etc/ansible/ansible.cfg\n  configured module search path = ???\n```\n\nIf you already have a search path configured, clone the repo (see options below) while you are in your search path.\n\nIf you have a \"default\" or No search path shown, open the config file that is shown in the output above, here that is `/etc/ansible/ansible.cfg`.  In that file, you'll see these first few lines:\n```\n[defaults]\n\n# some basic default values...\n\ninventory      = /etc/ansible/hosts\nlibrary        = /home/ntc/projects/\n```\n\nAdd a path for `library` that exists in this repository - this will become your search path. Validate it with `ansible --version` after you make the change.\n\n### Clone the repo in your search path\nOnce you have located your search path; browse to that directory and clone the netscaler-ansible repo:\n```\n$ cd /home/ntc/projects\n$ git clone https://github.com/networktocode/netscaler-ansible.git\n```\n\nAs a quick test and sanity-check use `ansible-doc` on one of the modules before trying to use them in a playbook.  For example, try this:\n```\n$ ansible-doc netscaler_save_config\n```\n\nIf that works, Ansible can find the modules and you can proceed to installing the dependencies below.\n\n## Install Dependencies\nAll of the dependencies can be installed using the requirements.txt file that comes with the modules.  Move to the new netscaler-ansible directory and use pip to install them.\n```\n$ cd netscaler-ansible\n$ pip install -r requirements.txt\n```\n\n\n# Full Module Documentation\n\nThe following docs are the same type of docs you'd find on docs.ansible.com for modules that are found in Ansible core:\n\nSee [Module Documentation](Module_Docs/netscaler_module_docs.md)\n\n# Examples\nSee [Examples](examples.md)\n\n# Contributing\nSee [Contributing](contributing.md)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworktocode%2Fnetscaler-ansible","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetworktocode%2Fnetscaler-ansible","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworktocode%2Fnetscaler-ansible/lists"}