├── .ansible-lint-ignore ├── .editorconfig ├── .gitallowed ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .pylintrc ├── .travis.yml ├── COPYING ├── README.md ├── README.rst ├── ansible_collections └── f5networks │ └── f5_modules │ ├── CHANGELOG.rst │ ├── README.md │ ├── changelogs │ ├── changelog.yaml │ ├── config.yaml │ └── fragments │ │ └── .gitkeep │ ├── docs │ └── .gitkeep │ ├── galaxy.yml │ ├── meta │ └── runtime.yml │ ├── plugins │ ├── action │ │ ├── __init__.py │ │ ├── bigip.py │ │ ├── bigip_imish_config.py │ │ └── bigiq.py │ ├── doc_fragments │ │ ├── f5.py │ │ ├── f5_rest_cli.py │ │ ├── f5ssh.py │ │ └── files.py │ ├── filter │ │ ├── __init__.py │ │ ├── abspath.py │ │ ├── abspath.yml │ │ ├── markdev.py │ │ └── markdev.yml │ ├── lookup │ │ ├── __init__.py │ │ ├── bigiq_license.py │ │ └── license_hopper.py │ ├── module_utils │ │ ├── __init__.py │ │ ├── bigip.py │ │ ├── bigiq.py │ │ ├── common.py │ │ ├── compare.py │ │ ├── constants.py │ │ ├── icontrol.py │ │ ├── ipaddress.py │ │ ├── provider_fallback.py │ │ ├── teem.py │ │ ├── urls.py │ │ └── version.py │ ├── modules │ │ ├── __init__.py │ │ ├── bigip_apm_acl.py │ │ ├── bigip_apm_network_access.py │ │ ├── bigip_apm_policy_fetch.py │ │ ├── bigip_apm_policy_import.py │ │ ├── bigip_asm_advanced_settings.py │ │ ├── bigip_asm_dos_application.py │ │ ├── bigip_asm_policy_fetch.py │ │ ├── bigip_asm_policy_import.py │ │ ├── bigip_asm_policy_manage.py │ │ ├── bigip_asm_policy_server_technology.py │ │ ├── bigip_asm_policy_signature_set.py │ │ ├── bigip_cgnat_lsn_pool.py │ │ ├── bigip_cli_alias.py │ │ ├── bigip_cli_script.py │ │ ├── bigip_command.py │ │ ├── bigip_config.py │ │ ├── bigip_configsync_action.py │ │ ├── bigip_data_group.py │ │ ├── bigip_device_auth.py │ │ ├── bigip_device_auth_ldap.py │ │ ├── bigip_device_auth_radius.py │ │ ├── bigip_device_auth_radius_server.py │ │ ├── bigip_device_certificate.py │ │ ├── bigip_device_connectivity.py │ │ ├── bigip_device_dns.py │ │ ├── bigip_device_group.py │ │ ├── bigip_device_group_member.py │ │ ├── bigip_device_ha_group.py │ │ ├── bigip_device_httpd.py │ │ ├── bigip_device_info.py │ │ ├── bigip_device_license.py │ │ ├── bigip_device_ntp.py │ │ ├── bigip_device_sshd.py │ │ ├── bigip_device_syslog.py │ │ ├── bigip_device_traffic_group.py │ │ ├── bigip_device_trust.py │ │ ├── bigip_dns_cache_resolver.py │ │ ├── bigip_dns_nameserver.py │ │ ├── bigip_dns_resolver.py │ │ ├── bigip_dns_zone.py │ │ ├── bigip_file_copy.py │ │ ├── bigip_firewall_address_list.py │ │ ├── bigip_firewall_dos_profile.py │ │ ├── bigip_firewall_dos_vector.py │ │ ├── bigip_firewall_global_rules.py │ │ ├── bigip_firewall_log_profile.py │ │ ├── bigip_firewall_log_profile_network.py │ │ ├── bigip_firewall_policy.py │ │ ├── bigip_firewall_port_list.py │ │ ├── bigip_firewall_rule.py │ │ ├── bigip_firewall_rule_list.py │ │ ├── bigip_firewall_schedule.py │ │ ├── bigip_gtm_datacenter.py │ │ ├── bigip_gtm_dns_listener.py │ │ ├── bigip_gtm_global.py │ │ ├── bigip_gtm_monitor_bigip.py │ │ ├── bigip_gtm_monitor_external.py │ │ ├── bigip_gtm_monitor_firepass.py │ │ ├── bigip_gtm_monitor_http.py │ │ ├── bigip_gtm_monitor_https.py │ │ ├── bigip_gtm_monitor_tcp.py │ │ ├── bigip_gtm_monitor_tcp_half_open.py │ │ ├── bigip_gtm_pool.py │ │ ├── bigip_gtm_pool_member.py │ │ ├── bigip_gtm_server.py │ │ ├── bigip_gtm_topology_record.py │ │ ├── bigip_gtm_topology_region.py │ │ ├── bigip_gtm_virtual_server.py │ │ ├── bigip_gtm_wide_ip.py │ │ ├── bigip_hostname.py │ │ ├── bigip_iapp_service.py │ │ ├── bigip_iapp_template.py │ │ ├── bigip_ike_peer.py │ │ ├── bigip_imish_config.py │ │ ├── bigip_interface.py │ │ ├── bigip_ipsec_policy.py │ │ ├── bigip_irule.py │ │ ├── bigip_log_destination.py │ │ ├── bigip_log_publisher.py │ │ ├── bigip_ltm_global.py │ │ ├── bigip_lx_package.py │ │ ├── bigip_management_route.py │ │ ├── bigip_message_routing_peer.py │ │ ├── bigip_message_routing_protocol.py │ │ ├── bigip_message_routing_route.py │ │ ├── bigip_message_routing_router.py │ │ ├── bigip_message_routing_transport_config.py │ │ ├── bigip_monitor_dns.py │ │ ├── bigip_monitor_external.py │ │ ├── bigip_monitor_ftp.py │ │ ├── bigip_monitor_gateway_icmp.py │ │ ├── bigip_monitor_http.py │ │ ├── bigip_monitor_https.py │ │ ├── bigip_monitor_icmp.py │ │ ├── bigip_monitor_ldap.py │ │ ├── bigip_monitor_mysql.py │ │ ├── bigip_monitor_oracle.py │ │ ├── bigip_monitor_smtp.py │ │ ├── bigip_monitor_snmp_dca.py │ │ ├── bigip_monitor_tcp.py │ │ ├── bigip_monitor_tcp_echo.py │ │ ├── bigip_monitor_tcp_half_open.py │ │ ├── bigip_monitor_udp.py │ │ ├── bigip_network_globals.py │ │ ├── bigip_node.py │ │ ├── bigip_partition.py │ │ ├── bigip_password_policy.py │ │ ├── bigip_policy.py │ │ ├── bigip_policy_rule.py │ │ ├── bigip_pool.py │ │ ├── bigip_pool_member.py │ │ ├── bigip_profile_analytics.py │ │ ├── bigip_profile_client_ssl.py │ │ ├── bigip_profile_dns.py │ │ ├── bigip_profile_fastl4.py │ │ ├── bigip_profile_ftp.py │ │ ├── bigip_profile_http.py │ │ ├── bigip_profile_http2.py │ │ ├── bigip_profile_http_compression.py │ │ ├── bigip_profile_oneconnect.py │ │ ├── bigip_profile_persistence_cookie.py │ │ ├── bigip_profile_persistence_src_addr.py │ │ ├── bigip_profile_persistence_universal.py │ │ ├── bigip_profile_server_ssl.py │ │ ├── bigip_profile_sip.py │ │ ├── bigip_profile_tcp.py │ │ ├── bigip_profile_udp.py │ │ ├── bigip_provision.py │ │ ├── bigip_provision_async.py │ │ ├── bigip_qkview.py │ │ ├── bigip_remote_role.py │ │ ├── bigip_remote_syslog.py │ │ ├── bigip_remote_user.py │ │ ├── bigip_routedomain.py │ │ ├── bigip_selfip.py │ │ ├── bigip_service_policy.py │ │ ├── bigip_smtp.py │ │ ├── bigip_snat_pool.py │ │ ├── bigip_snat_translation.py │ │ ├── bigip_snmp.py │ │ ├── bigip_snmp_community.py │ │ ├── bigip_snmp_trap.py │ │ ├── bigip_software_image.py │ │ ├── bigip_software_install.py │ │ ├── bigip_software_update.py │ │ ├── bigip_ssl_certificate.py │ │ ├── bigip_ssl_csr.py │ │ ├── bigip_ssl_key.py │ │ ├── bigip_ssl_key_cert.py │ │ ├── bigip_ssl_ocsp.py │ │ ├── bigip_static_route.py │ │ ├── bigip_sys_daemon_log_tmm.py │ │ ├── bigip_sys_db.py │ │ ├── bigip_sys_global.py │ │ ├── bigip_timer_policy.py │ │ ├── bigip_traffic_selector.py │ │ ├── bigip_trunk.py │ │ ├── bigip_tunnel.py │ │ ├── bigip_ucs.py │ │ ├── bigip_ucs_fetch.py │ │ ├── bigip_user.py │ │ ├── bigip_vcmp_guest.py │ │ ├── bigip_virtual_address.py │ │ ├── bigip_virtual_server.py │ │ ├── bigip_vlan.py │ │ ├── bigip_wait.py │ │ ├── bigiq_application_fasthttp.py │ │ ├── bigiq_application_fastl4_tcp.py │ │ ├── bigiq_application_fastl4_udp.py │ │ ├── bigiq_application_http.py │ │ ├── bigiq_application_https_offload.py │ │ ├── bigiq_application_https_waf.py │ │ ├── bigiq_device_discovery.py │ │ ├── bigiq_device_info.py │ │ ├── bigiq_regkey_license.py │ │ ├── bigiq_regkey_license_assignment.py │ │ ├── bigiq_regkey_pool.py │ │ ├── bigiq_utility_license.py │ │ └── bigiq_utility_license_assignment.py │ └── terminal │ │ └── bigip.py │ ├── requirements.txt │ └── tests │ ├── __init__.py │ ├── config.yml │ ├── sanity │ ├── ignore-2.13.txt │ ├── ignore-2.14.txt │ ├── ignore-2.15.txt │ ├── ignore-2.16.txt │ ├── ignore-2.17.txt │ └── ignore-2.18.txt │ └── unit │ ├── __init__.py │ ├── compat │ ├── __init__.py │ ├── builtins.py │ ├── mock.py │ └── unittest.py │ ├── mock │ ├── __init__.py │ ├── loader.py │ ├── path.py │ ├── procenv.py │ ├── vault_helper.py │ └── yaml_helper.py │ ├── module_utils │ └── network │ │ └── f5 │ │ └── test_teem.py │ └── modules │ ├── __init__.py │ ├── conftest.py │ ├── network │ ├── __init__.py │ └── f5 │ │ ├── __init__.py │ │ ├── fixtures │ │ ├── MyApp-0.1.0-0001.noarch.rpm │ │ ├── __init__.py │ │ ├── apply_asm_policy_started.json │ │ ├── basic-iapp.tmpl │ │ ├── cat_md5_hotfix.json │ │ ├── cat_md5_software.json │ │ ├── cert1.crt │ │ ├── cert1.key │ │ ├── cert2.crt │ │ ├── cert2.key │ │ ├── chain1.crt │ │ ├── chain2.crt │ │ ├── create_gtm_irule.tcl │ │ ├── create_iapp_service_parameters_f5_http.json │ │ ├── create_iapp_template.iapp │ │ ├── create_insecure_cert1.crt │ │ ├── create_insecure_key1.key │ │ ├── create_iworkflow_service.json │ │ ├── create_iworkflow_service_template_appsvcs_integration.json │ │ ├── create_ltm_irule.tcl │ │ ├── current_easy_setup.json │ │ ├── current_identified_devices_config_discovery.json │ │ ├── current_setup.json │ │ ├── data-group-address.txt │ │ ├── data-group-integer.txt │ │ ├── data-group-string.txt │ │ ├── f5.microsoft_adfs.v1.0.0.tmpl │ │ ├── fake_policy.tar.gz │ │ ├── fake_policy.xml │ │ ├── fw_addr_rd.json │ │ ├── import_policy_from_template_task_started.json │ │ ├── import_policy_task_started.json │ │ ├── list_hotfixes_after_upload_remote.json │ │ ├── list_hotfixes_local.json │ │ ├── list_hotfixes_remote.json │ │ ├── list_images_after_upload_local.json │ │ ├── list_images_after_upload_remote.json │ │ ├── list_images_local.json │ │ ├── list_images_remote.json │ │ ├── list_of_volumes_12_1_2_installed.json │ │ ├── list_of_volumes_12_1_2_not_installed.json │ │ ├── list_of_volumes_only_active_volume.json │ │ ├── load_active_volume.json │ │ ├── load_afm_global_network_log_network.json │ │ ├── load_afm_log_global_network_profile.json │ │ ├── load_afm_schedule.json │ │ ├── load_apm_acl.json │ │ ├── load_apm_network_access.json │ │ ├── load_asm_dos.json │ │ ├── load_asm_policy_active.json │ │ ├── load_asm_policy_inactive.json │ │ ├── load_asm_settings.json │ │ ├── load_auth_remote_role_role_info_1.json │ │ ├── load_auth_user_no_pass.json │ │ ├── load_auth_user_with_pass.json │ │ ├── load_bigip_monitor_mysql.json │ │ ├── load_cgnat_lsn_pool.json │ │ ├── load_cm_cloud_managed_devices.json │ │ ├── load_connectors.json │ │ ├── load_dag_globals.json │ │ ├── load_device_group.json │ │ ├── load_easy_setup.json │ │ ├── load_f5.microsoft_adfs.v1.0.0.tmpl │ │ ├── load_generic_parser.json │ │ ├── load_generic_peer.json │ │ ├── load_generic_route.json │ │ ├── load_generic_router.json │ │ ├── load_generic_transport_config.json │ │ ├── load_gtm_datacenter_default.json │ │ ├── load_gtm_datacenter_disabled.json │ │ ├── load_gtm_global_settings_general_1.json │ │ ├── load_gtm_irules.json │ │ ├── load_gtm_monitor_firepass_1.json │ │ ├── load_gtm_monitor_http_1.json │ │ ├── load_gtm_monitor_tcp_1.json │ │ ├── load_gtm_pool_a_collection.json │ │ ├── load_gtm_pool_a_default.json │ │ ├── load_gtm_pool_a_example_stats.json │ │ ├── load_gtm_pool_a_member_1.json │ │ ├── load_gtm_pool_a_with_members_1.json │ │ ├── load_gtm_server_1.json │ │ ├── load_gtm_server_virtual_1.json │ │ ├── load_gtm_server_virtual_2.json │ │ ├── load_identified_devices_config_discovery.json │ │ ├── load_imish_output_1.json │ │ ├── load_interface.json │ │ ├── load_license_pool.json │ │ ├── load_license_pool_members.json │ │ ├── load_lldp_globals.json │ │ ├── load_ltm_data_group_internal_ip.json │ │ ├── load_ltm_data_group_internal_string.json │ │ ├── load_ltm_dns_cache_resolver_1.json │ │ ├── load_ltm_dns_nameserver_1.json │ │ ├── load_ltm_dns_zone_1.json │ │ ├── load_ltm_fastl4_profile_1.json │ │ ├── load_ltm_global_settings_general.json │ │ ├── load_ltm_http2_profile.json │ │ ├── load_ltm_http_profile_1.json │ │ ├── load_ltm_irules.json │ │ ├── load_ltm_monitor_ftp.json │ │ ├── load_ltm_monitor_http.json │ │ ├── load_ltm_monitor_https.json │ │ ├── load_ltm_monitor_smtp.json │ │ ├── load_ltm_monitor_snmp_dca.json │ │ ├── load_ltm_monitor_tcp.json │ │ ├── load_ltm_monitor_tcp_echo.json │ │ ├── load_ltm_monitor_tcp_half_open.json │ │ ├── load_ltm_monitor_udp.json │ │ ├── load_ltm_node_1.json │ │ ├── load_ltm_node_2.json │ │ ├── load_ltm_node_3.json │ │ ├── load_ltm_policy_draft_rule_http-uri_forward.json │ │ ├── load_ltm_policy_rule_http-uri_forward.json │ │ ├── load_ltm_policy_rule_many_actions_many_conditions.json │ │ ├── load_ltm_policy_rule_no_actions_no_conditions.json │ │ ├── load_ltm_policy_rule_no_actions_one_condition.json │ │ ├── load_ltm_policy_rule_one_action_no_conditions.json │ │ ├── load_ltm_pool.json │ │ ├── load_ltm_pool_with_metadata.json │ │ ├── load_ltm_profile_analytics_1.json │ │ ├── load_ltm_profile_clientssl.json │ │ ├── load_ltm_profile_dns_1.json │ │ ├── load_ltm_profile_ftp.json │ │ ├── load_ltm_profile_http_compression_1.json │ │ ├── load_ltm_profile_oneconnect_1.json │ │ ├── load_ltm_profile_persistence_cookie_1.json │ │ ├── load_ltm_profile_persistence_src_addr_1.json │ │ ├── load_ltm_profile_persistence_universal.json │ │ ├── load_ltm_profile_serverssl_1.json │ │ ├── load_ltm_profile_tcp_1.json │ │ ├── load_ltm_profile_udp_1.json │ │ ├── load_ltm_snat_translation_default.json │ │ ├── load_ltm_snatpool.json │ │ ├── load_ltm_virtual_1.json │ │ ├── load_ltm_virtual_1_address.json │ │ ├── load_ltm_virtual_2.json │ │ ├── load_ltm_virtual_3.json │ │ ├── load_ltm_virtual_address_collection_1.json │ │ ├── load_ltm_virtual_address_default.json │ │ ├── load_machine_resolver.json │ │ ├── load_mcast_globals.json │ │ ├── load_net_dns_resolver_1.json │ │ ├── load_net_interfaces.json │ │ ├── load_net_node_with_fqdn.json │ │ ├── load_net_node_with_ipv4_address.json │ │ ├── load_net_route_blackhole.json │ │ ├── load_net_route_description.json │ │ ├── load_net_route_domain_1.json │ │ ├── load_net_route_use_gateway.json │ │ ├── load_net_route_use_pool.json │ │ ├── load_net_service_policy_1.json │ │ ├── load_net_timer_policy_1.json │ │ ├── load_net_timer_policy_2.json │ │ ├── load_net_tunnel_1.json │ │ ├── load_ntp.json │ │ ├── load_oracle_monitor.json │ │ ├── load_profile_sip.json │ │ ├── load_radius_config.json │ │ ├── load_radius_server.json │ │ ├── load_regkey_license_key.json │ │ ├── load_regkey_license_pool.json │ │ ├── load_remote_user_settings.json │ │ ├── load_security_address_list_1.json │ │ ├── load_security_firewall_global_rules_1.json │ │ ├── load_security_firewall_policy_1.json │ │ ├── load_security_port_list_1.json │ │ ├── load_setup.json │ │ ├── load_shared_system_setup_1.json │ │ ├── load_stp_globals.json │ │ ├── load_sys_application_template_w_new_checksum.json │ │ ├── load_sys_application_template_w_old_checksum.json │ │ ├── load_sys_crypto_cert_validator_1.json │ │ ├── load_sys_crypto_csr.json │ │ ├── load_sys_file_data_group_string.json │ │ ├── load_sys_file_external-monitor_1.json │ │ ├── load_sys_file_ssl_cert_with_issuer_cert.json │ │ ├── load_sys_global_settings.json │ │ ├── load_sys_httpd.json │ │ ├── load_sys_httpd_non_default.json │ │ ├── load_sys_log_config_destination_1.json │ │ ├── load_sys_log_config_publisher_1.json │ │ ├── load_sys_management_route_1.json │ │ ├── load_sys_provision_default.json │ │ ├── load_sys_smtp_server.json │ │ ├── load_sys_snmp_communities_1.json │ │ ├── load_sys_snmp_communities_2.json │ │ ├── load_sys_snmp_communities_3.json │ │ ├── load_sys_snmp_communities_4.json │ │ ├── load_sys_snmp_users_1.json │ │ ├── load_sys_snmp_users_2.json │ │ ├── load_sys_snmp_users_3.json │ │ ├── load_sys_snmp_users_4.json │ │ ├── load_sys_software_image_1.json │ │ ├── load_sys_software_update.json │ │ ├── load_sys_syslog_1.json │ │ ├── load_tenant.json │ │ ├── load_tg_ha_order.json │ │ ├── load_tm_auth_partition.json │ │ ├── load_tm_auth_password_policy_1.json │ │ ├── load_tm_auth_tacacs_1.json │ │ ├── load_tm_cli_alias_1.json │ │ ├── load_tm_cli_script_1.json │ │ ├── load_tm_cm_device.json │ │ ├── load_tm_cm_device_default.json │ │ ├── load_tm_cm_device_group.json │ │ ├── load_tm_cm_traffic_group_1.json │ │ ├── load_tm_cm_traffic_group_2.json │ │ ├── load_tm_net_self.json │ │ ├── load_tm_net_trunk_1.json │ │ ├── load_tm_sys_file_ssl_cert_no_password.json │ │ ├── load_tm_sys_file_ssl_key_no_password.json │ │ ├── load_tm_sys_syslog_1.json │ │ ├── load_tm_sys_syslog_2.json │ │ ├── load_tm_sys_ucs.json │ │ ├── load_tmm_log.json │ │ ├── load_vcmp_guest.json │ │ ├── load_vcmp_guest_virtual_disk_1.json │ │ ├── load_vcmp_guest_virtual_disk_2.json │ │ ├── load_vlan.json │ │ ├── load_vlan_interfaces.json │ │ ├── load_vlan_tagged_ifcs.json │ │ ├── load_vlan_untag_ifcs.json │ │ ├── md5_sum_failed_hf.json │ │ ├── md5_sum_failed_software.json │ │ ├── md5_sum_ok_hf.json │ │ ├── md5_sum_ok_software.json │ │ ├── pool_members_subcollection.json │ │ ├── update_iapp_service_parameters_f5_http.json │ │ └── update_vlan_description.json │ │ ├── test_bigip_apm_acl.py │ │ ├── test_bigip_apm_network_access.py │ │ ├── test_bigip_apm_policy_fetch.py │ │ ├── test_bigip_apm_policy_import.py │ │ ├── test_bigip_asm_advanced_settings.py │ │ ├── test_bigip_asm_dos_application.py │ │ ├── test_bigip_asm_policy_fetch.py │ │ ├── test_bigip_asm_policy_import.py │ │ ├── test_bigip_asm_policy_manage.py │ │ ├── test_bigip_asm_policy_server_technology.py │ │ ├── test_bigip_asm_policy_signature_set.py │ │ ├── test_bigip_cgnat_lsn_pool.py │ │ ├── test_bigip_cli_alias.py │ │ ├── test_bigip_cli_script.py │ │ ├── test_bigip_command.py │ │ ├── test_bigip_config.py │ │ ├── test_bigip_configsync_action.py │ │ ├── test_bigip_data_group.py │ │ ├── test_bigip_device_auth.py │ │ ├── test_bigip_device_auth_ldap.py │ │ ├── test_bigip_device_auth_radius.py │ │ ├── test_bigip_device_auth_radius_server.py │ │ ├── test_bigip_device_certificate.py │ │ ├── test_bigip_device_connectivity.py │ │ ├── test_bigip_device_dns.py │ │ ├── test_bigip_device_group.py │ │ ├── test_bigip_device_group_member.py │ │ ├── test_bigip_device_ha_group.py │ │ ├── test_bigip_device_httpd.py │ │ ├── test_bigip_device_info.py │ │ ├── test_bigip_device_license.py │ │ ├── test_bigip_device_ntp.py │ │ ├── test_bigip_device_sshd.py │ │ ├── test_bigip_device_syslog.py │ │ ├── test_bigip_device_traffic_group.py │ │ ├── test_bigip_device_trust.py │ │ ├── test_bigip_dns_cache_resolver.py │ │ ├── test_bigip_dns_nameserver.py │ │ ├── test_bigip_dns_resolver.py │ │ ├── test_bigip_dns_zone.py │ │ ├── test_bigip_file_copy.py │ │ ├── test_bigip_firewall_address_list.py │ │ ├── test_bigip_firewall_dos_profile.py │ │ ├── test_bigip_firewall_dos_vector.py │ │ ├── test_bigip_firewall_global_rules.py │ │ ├── test_bigip_firewall_log_profile.py │ │ ├── test_bigip_firewall_log_profile_network.py │ │ ├── test_bigip_firewall_policy.py │ │ ├── test_bigip_firewall_port_list.py │ │ ├── test_bigip_firewall_rule.py │ │ ├── test_bigip_firewall_rule_list.py │ │ ├── test_bigip_firewall_schedule.py │ │ ├── test_bigip_gtm_datacenter.py │ │ ├── test_bigip_gtm_dns_listener.py │ │ ├── test_bigip_gtm_global.py │ │ ├── test_bigip_gtm_monitor_bigip.py │ │ ├── test_bigip_gtm_monitor_external.py │ │ ├── test_bigip_gtm_monitor_firepass.py │ │ ├── test_bigip_gtm_monitor_http.py │ │ ├── test_bigip_gtm_monitor_https.py │ │ ├── test_bigip_gtm_monitor_tcp.py │ │ ├── test_bigip_gtm_monitor_tcp_half_open.py │ │ ├── test_bigip_gtm_pool.py │ │ ├── test_bigip_gtm_pool_member.py │ │ ├── test_bigip_gtm_server.py │ │ ├── test_bigip_gtm_topology_record.py │ │ ├── test_bigip_gtm_topology_region.py │ │ ├── test_bigip_gtm_virtual_server.py │ │ ├── test_bigip_gtm_wide_ip.py │ │ ├── test_bigip_hostname.py │ │ ├── test_bigip_iapp_service.py │ │ ├── test_bigip_iapp_template.py │ │ ├── test_bigip_ike_peer.py │ │ ├── test_bigip_imish_config.py │ │ ├── test_bigip_interface.py │ │ ├── test_bigip_ipsec_policy.py │ │ ├── test_bigip_irule.py │ │ ├── test_bigip_log_destination.py │ │ ├── test_bigip_log_publisher.py │ │ ├── test_bigip_ltm_global.py │ │ ├── test_bigip_lx_package.py │ │ ├── test_bigip_management_route.py │ │ ├── test_bigip_message_routing_peer.py │ │ ├── test_bigip_message_routing_protocol.py │ │ ├── test_bigip_message_routing_route.py │ │ ├── test_bigip_message_routing_router.py │ │ ├── test_bigip_message_routing_transport_config.py │ │ ├── test_bigip_monitor_dns.py │ │ ├── test_bigip_monitor_external.py │ │ ├── test_bigip_monitor_ftp.py │ │ ├── test_bigip_monitor_gateway_icmp.py │ │ ├── test_bigip_monitor_http.py │ │ ├── test_bigip_monitor_https.py │ │ ├── test_bigip_monitor_icmp.py │ │ ├── test_bigip_monitor_ldap.py │ │ ├── test_bigip_monitor_mysql.py │ │ ├── test_bigip_monitor_oracle.py │ │ ├── test_bigip_monitor_smtp.py │ │ ├── test_bigip_monitor_snmp_dca.py │ │ ├── test_bigip_monitor_tcp.py │ │ ├── test_bigip_monitor_tcp_echo.py │ │ ├── test_bigip_monitor_tcp_half_open.py │ │ ├── test_bigip_monitor_udp.py │ │ ├── test_bigip_network_globals.py │ │ ├── test_bigip_node.py │ │ ├── test_bigip_partition.py │ │ ├── test_bigip_password_policy.py │ │ ├── test_bigip_policy.py │ │ ├── test_bigip_policy_rule.py │ │ ├── test_bigip_pool.py │ │ ├── test_bigip_pool_member.py │ │ ├── test_bigip_profile_analytics.py │ │ ├── test_bigip_profile_client_ssl.py │ │ ├── test_bigip_profile_dns.py │ │ ├── test_bigip_profile_fastl4.py │ │ ├── test_bigip_profile_ftp.py │ │ ├── test_bigip_profile_http.py │ │ ├── test_bigip_profile_http2.py │ │ ├── test_bigip_profile_http_compression.py │ │ ├── test_bigip_profile_oneconnect.py │ │ ├── test_bigip_profile_persistence_cookie.py │ │ ├── test_bigip_profile_persistence_src_addr.py │ │ ├── test_bigip_profile_persistence_universal.py │ │ ├── test_bigip_profile_server_ssl.py │ │ ├── test_bigip_profile_sip.py │ │ ├── test_bigip_profile_tcp.py │ │ ├── test_bigip_profile_udp.py │ │ ├── test_bigip_provision.py │ │ ├── test_bigip_provision_async.py │ │ ├── test_bigip_qkview.py │ │ ├── test_bigip_remote_role.py │ │ ├── test_bigip_remote_syslog.py │ │ ├── test_bigip_remote_user.py │ │ ├── test_bigip_routedomain.py │ │ ├── test_bigip_selfip.py │ │ ├── test_bigip_service_policy.py │ │ ├── test_bigip_smtp.py │ │ ├── test_bigip_snat_pool.py │ │ ├── test_bigip_snat_translation.py │ │ ├── test_bigip_snmp.py │ │ ├── test_bigip_snmp_community.py │ │ ├── test_bigip_snmp_trap.py │ │ ├── test_bigip_software_image.py │ │ ├── test_bigip_software_install.py │ │ ├── test_bigip_software_update.py │ │ ├── test_bigip_ssl_certificate.py │ │ ├── test_bigip_ssl_csr.py │ │ ├── test_bigip_ssl_key.py │ │ ├── test_bigip_ssl_key_cert.py │ │ ├── test_bigip_ssl_ocsp.py │ │ ├── test_bigip_static_route.py │ │ ├── test_bigip_sys_daemon_log_tmm.py │ │ ├── test_bigip_sys_db.py │ │ ├── test_bigip_sys_global.py │ │ ├── test_bigip_timer_policy.py │ │ ├── test_bigip_traffic_selector.py │ │ ├── test_bigip_trunk.py │ │ ├── test_bigip_tunnel.py │ │ ├── test_bigip_ucs.py │ │ ├── test_bigip_ucs_fetch.py │ │ ├── test_bigip_user.py │ │ ├── test_bigip_vcmp_guest.py │ │ ├── test_bigip_virtual_address.py │ │ ├── test_bigip_virtual_server.py │ │ ├── test_bigip_vlan.py │ │ ├── test_bigip_wait.py │ │ ├── test_bigiq_application_fasthttp.py │ │ ├── test_bigiq_application_fastl4_tcp.py │ │ ├── test_bigiq_application_fastl4_udp.py │ │ ├── test_bigiq_application_http.py │ │ ├── test_bigiq_application_https_offload.py │ │ ├── test_bigiq_application_https_waf.py │ │ ├── test_bigiq_device_discovery.py │ │ ├── test_bigiq_device_info.py │ │ ├── test_bigiq_regkey_license.py │ │ ├── test_bigiq_regkey_license_assignment.py │ │ ├── test_bigiq_regkey_pool.py │ │ ├── test_bigiq_utility_license.py │ │ └── test_bigiq_utility_license_assignment.py │ └── utils.py ├── devtools ├── docker-compose.yaml ├── scripts │ └── merge-upstream.sh ├── secrets │ └── gitconfig └── stubs │ ├── collection_galaxy_f5_modules.yml │ ├── library_module.py │ ├── playbooks_module.yaml │ ├── test-integration-issue.yaml │ ├── test_integration_targets_main.yaml │ ├── test_meta_main.yml │ ├── tests_unit_module.py │ └── version_stub.py ├── examples ├── 0000-getting-started │ ├── inventory │ │ └── hosts │ ├── playbook.yaml │ └── undo-playbook.yaml ├── 0001-lab-reset-and-pairing │ ├── README.rst │ ├── v11-1-reset.yaml │ ├── v11-2-reset.yaml │ ├── v12-v11-pair-device.yaml │ └── v13-pair-device.yaml ├── 0002-license-bigip │ ├── README.rst │ ├── group_vars │ │ └── f5-test.yaml │ ├── inventory │ │ └── hosts │ └── playbook.yaml ├── 0003-wait-for-bigip │ ├── README.rst │ ├── group_vars │ │ └── f5-test.yaml │ ├── inventory │ │ └── hosts │ └── playbook.yaml ├── 0004-faking-idempotency-with-bigip-command │ ├── README.rst │ ├── group_vars │ │ └── f5-test.yaml │ ├── inventory │ │ └── hosts │ └── playbook.yaml ├── 0005-ha-pair-setup │ ├── README.rst │ ├── group_vars │ │ └── f5-test.yaml │ ├── host_vars │ │ ├── bigip01.internal.yaml │ │ └── bigip02.internal.yaml │ ├── inventory │ │ └── hosts │ ├── playbook.yaml │ └── validate.yaml ├── 0006-using-rest-api-directly │ ├── README.rst │ ├── group_vars │ │ └── f5-test.yaml │ ├── host_vars │ │ └── bigip01.internal.yaml │ ├── inventory │ │ └── hosts │ ├── playbook-with-transaction.yaml │ ├── playbook.yaml │ ├── undo-playbook-with-transaction.yaml │ └── undo-playbook.yaml ├── 0007-asm-irule-data-group-ltm-policy-virtual-server │ ├── README.rst │ ├── files │ │ ├── actors.xml │ │ ├── bad-actors-1 │ │ └── bad-actors.tcl │ ├── inventory │ │ ├── host_vars │ │ │ └── f5.yaml │ │ └── hosts │ └── playbook.yaml ├── 0008-bigiq-per-app-http-application │ ├── group_vars │ │ └── f5-test.yaml │ ├── inventory │ │ └── hosts │ ├── playbook.yaml │ └── undo-playbook.yaml ├── README.rst ├── hosts.ini.example ├── lots-of-nodes.yaml ├── pool-from-port-range.yaml ├── pool-member-enable-disable.yaml └── with-items-omit.yaml ├── fragments_archive ├── .gitkeep ├── 1.1.0 │ ├── 1237-fix-auth-not-authorized.yaml │ ├── 1336-adds-accounting-device-auth.yaml │ ├── 1392-fix-save-when.yaml │ ├── 1405-add-perist-cookie-option.yaml │ ├── 1440-add-true-name-support.yaml │ ├── 1500-add-phase1-lifetime.yaml │ ├── 1527-add-fw_enf-support.yaml │ ├── 1563-ipv6-bigip-device-info.yaml │ ├── 1566-new-universal-persistence.yaml │ ├── 1575-new-ftp-monitor.yaml │ ├── 1576-new-icmp-monitor.yaml │ ├── 1580-add-self-allow.yaml │ ├── 1580-new-smtp-monitor.yaml │ └── 1601-remove-deprecations.yaml ├── 1.10.0 │ ├── 1978-fix-asm-query-filters.yaml │ ├── 1986-fix-add-negate-as3-filter.yaml │ ├── 1993-allow-disable-persistence.yaml │ ├── 1998-add-ltm-policy-rule-order.yaml │ ├── 2002-add-external-datagroup-ltm-policy.yaml │ ├── 2006-fix-apm-acl.yaml │ ├── 2017-fix-bigip-device-info.yaml │ ├── 2018-fix-external-data-group-partition.yaml │ └── 2054-fix-bigip-device-info.yaml ├── 1.10.1 │ └── 2061-fix-bigip-command-cli-teem.yaml ├── 1.11.0 │ ├── 1731-fix-firewall-address_list.yaml │ ├── 1912-add-syn_cookie_enable.yaml │ ├── 1992-fix-software-install.yaml │ ├── 2041-add-serialNumber-sslcerts-gatherSubset.yaml │ └── fix-snat-pool-device-info.yaml ├── 1.11.1 │ ├── doc-fix-datagroups.yaml │ ├── fix-afm-rd-attach.yaml │ ├── fix-asm-api-filters.yaml │ ├── fix-bigip-device-info.yaml │ ├── fix-regression-pool-member-aggregate.yaml │ └── vs-sip-idempotent.yaml ├── 1.12.0 │ ├── 1502-add-option-to-create-ucs-only.yaml │ ├── 1981-fix-ucs-instability.yaml │ ├── 2040-add-cipher-groups-server-ssl.yaml │ ├── 2048-fix-conditon-removal.yaml │ ├── 2083-fix-bigip-policy.yaml │ └── bigip-v1fix.yaml ├── 1.13.0 │ ├── 2001-ldap-fixes.yaml │ ├── 2103-virtual-server-profile-issue.yaml │ ├── 2104-add-auto-last-hop.yaml │ ├── 2134-ucs-src-report.yaml │ └── fix-bigip-wait-send-teem-error.yaml ├── 1.14.0 │ ├── 1687-add-filter-and-paging-logic.yaml │ ├── 1984-bigip-device-info-changes.yaml │ ├── 2143-fix-partition-filter.yaml │ ├── 2145-fix-false-positive-errors.yaml │ ├── fix-security-parameter-ldap-monitor.yaml │ ├── no_log_key_and_cert_content.yaml │ └── syslog_include_support_escaped_quotes.yaml ├── 1.15.0 │ ├── 2155-fix-bigip-firewall-address.yaml │ ├── add-checkmode-bypass-bigip-pool-member.yaml │ ├── add-meta-choice-packages.yaml │ ├── add_content_type_include.yaml │ ├── bigip-device-info-ucs.yaml │ ├── bugfix-bigip-device-info.yaml │ ├── bugfix-gtm-wide-ip.yaml │ └── bugfix-multiple-add-on-keys.yaml ├── 1.16.0 │ ├── 2013-add-addon-bigiq-license.yaml │ ├── 2177-add-ucs-date.yaml │ ├── 2179-fix-persistence-parameter-update.yaml │ ├── add-service-down-action-vs.yaml │ ├── bugfix-bigip-command.yaml │ └── fix-missing-space-device_cert.yaml ├── 1.17.0 │ ├── 2031-fix-wideip-irule-update.yaml │ ├── 2163-fix-getting-ip-from-destination.yaml │ ├── 2170-add-parent-in-serversslprofile.yaml │ ├── fix-autopopulate-node.yaml │ └── fix-idempotency-gtm-wide-ip.yaml ├── 1.18.0 │ ├── add-new-parameters-bigip-pool.yaml │ ├── fix-ip-extraction_ltm_gtm_monitor.yaml │ └── fix-pagination-bug-bigip-device-info.yaml ├── 1.19.0 │ ├── add-additional-telemetry-data.yaml │ ├── add-parameter-aliases-bigip-pool.yaml │ ├── fix-idempotency-software-install.yaml │ └── fix-ldap-monitor-password.yaml ├── 1.2.0 │ ├── 1112-addon-keys.yaml │ ├── 1483-add-ciphergroup-param.yaml │ ├── 1497-add-mgmt-routes.yaml │ ├── 1521-add-forward-node.yaml │ ├── 1587-bugfix-data-grp.yaml │ ├── 1607-bugfix-ipv6-datagrp.yaml │ ├── 1610-add-bypass-checks.yaml │ ├── 1616-add-multiple-vectors.yaml │ ├── 1618-bugfix-imish-dupe.yaml │ ├── 1625-bigiq-device-info-support.yaml │ ├── 1628-add-dos-vectors.yaml │ ├── 1630-add-info-policies.yaml │ ├── 1634-bugfix-sofware-install.yaml │ ├── 1642-bugfix-truenames.yaml │ ├── 1662-add-aliases.yaml │ ├── 1681-new-radius-auth.yaml │ ├── 1690-bugfix-boolean.yaml │ └── 1691-bugfix-list-type.yaml ├── 1.20.0 │ ├── add_only_create_file_to_qkview.yaml │ ├── fix-hotfix-image-installation-on-vcmp.yaml │ ├── fix-naming-issues-asm.yaml │ └── fix-records-update-issues-data-group.yaml ├── 1.21.0 │ ├── 2227-fix-permission-ownership-bigip-ucs.yaml │ └── sr-fix-image-upload-bug.yaml ├── 1.22.0 │ ├── 1897-add-keep-alive-interval.yaml │ ├── 1932-add-up-interval-bigip-monitor-http.yaml │ ├── 2052-add-remaining-host-conditions.yaml │ ├── 2113-add-hsts-option-http-profile.yaml │ ├── 2252-add-referrals-device-auth-ldap.yaml │ ├── 2253-asm-disable-target-policy-rule.yaml │ ├── 2261-asm-sync-bigip-device-group.yaml │ ├── add-data-increment-device-info.yaml │ ├── add-license-option-bigip-device-info.yaml │ └── fix-route-domain-in-ip.yaml ├── 1.22.1 │ └── fix-infinite-loop-device-license.yaml ├── 1.23.0 │ ├── 2290-firewall-rule-set-source-destination-to-any.yaml │ ├── 2294-device-info-ltm-policies-attributes.yaml │ ├── 2299-gui-audit-bigip-sys-global.yaml │ ├── 2308-bigip-policy-host-contains.yaml │ └── fix-passphrase-bug-bigip-ucs-fetch.yaml ├── 1.24.0 │ ├── 2263-fix-bigip-device-info-fqdn-pool-interval.yaml │ ├── added-new-param-ssl-key-cert-modules.yaml │ ├── device-info-license-bugfix.yaml │ └── fix-profile-srverssl-issue01711.yaml ├── 1.25.0 │ ├── bigip-command-long-running-cmd-fix.yaml │ └── new-bigip-async-module.yaml ├── 1.26.0 │ ├── true-names-bigfixes.yaml │ └── virtual-server-profile-idempotency.yaml ├── 1.27.0 │ ├── bigip-pool-removeMonitor-bugfix.yaml │ ├── error-handling-for-connection-error.yaml │ └── policy-rule-ssl-extension-options.yaml ├── 1.27.1 │ └── bigiq-device-discovery-doc-changes.yaml ├── 1.28.0 │ ├── fix-gtm-monitors.yaml │ ├── fix-gtm-topo-region.yaml │ └── fix-ssl-key-cert-passphrase-bug.yaml ├── 1.29.0 │ └── issue_2393.yaml ├── 1.3.0 │ ├── 1182-add-auth-source.yaml │ ├── 1275-new-ssl-csr-module.yaml │ ├── 1632-new-monitor-oracle.yaml │ ├── 1680-add-vcmp-software-install.yaml │ ├── 1693-new-monitor_mysql.yaml │ ├── 1696-add-pool-order.yaml │ ├── 1701-bugfix-list-index-user.yaml │ ├── 1706-add-set-variable-rule.yaml │ ├── 1715-add-remove-changes.yaml │ ├── 1719-device-auth-changes.yaml │ ├── 1724-added-options.yaml │ └── 1726-multiple-additions.yaml ├── 1.30.0 │ └── bigip-ucs-restore-fix.yaml ├── 1.31.0 │ └── issue_2419_2421.yaml ├── 1.32.0 │ ├── imish_route_domain_bugfix.yml │ └── issue-2429.yaml ├── 1.33.0 │ └── external_monitor_issue.yml ├── 1.34.0 │ ├── issue_2424.yaml │ ├── issue_2434.yaml │ └── issue_2435.yaml ├── 1.35.0 │ ├── 2454-firewall-address-with-cidr-rd.yaml │ └── 2458-profile-server-ssl.yaml ├── 1.37.1 │ └── virtual-server-crash.yaml ├── 1.4.0 │ ├── 1485-new-asm-advanced-settings.yaml │ ├── 1561-bugfix-asm-policy-import.yaml │ ├── 1717-add-rpm-retention.yaml │ ├── 1721-bugfix-idempotency-client-ssl.yaml │ ├── 1730-add-apply-asm-policy.yaml │ ├── 1740-new-gtm-dns-listener-module.yaml │ └── 1749-parameter-changes.yaml ├── 1.5.0 │ ├── 1624-bugfix-bigiq-control.yaml │ └── 1781-bugfix-apm-policy-fetch.yaml ├── 1.6.0 │ ├── 1217-new-bigp-ssl-key-cert.yaml │ ├── 1710-add-bigip-device-info.yaml │ ├── 1728-bugfix-command.yaml │ ├── 1777-add-syslog-device-info.yaml │ ├── 1778-sync-status-bigip-info.yaml │ ├── 1782-add-reuse-objects.yaml │ ├── 1784-add-apm-info.yaml │ ├── 1795-fix-unicast-param-device-conn.yaml │ ├── 1816-license-renew.yaml │ ├── 1832-remove-deprecations.yaml │ ├── 1834-atc-add-bigip-device-info.yaml │ ├── 1834-atc-bigip-device-info.yaml │ ├── 1840-bugfix-lxpackage-configsync.yaml │ ├── 1855-add-api-protect-apm.yaml │ ├── 1859-bugfix-asm-file-download-fix.yaml │ ├── 1884-add-teem-phone-home.yaml │ └── 608-fix-force-parameter-asm-policy.yaml ├── 1.7.0 │ ├── 1507-change-ucs_fetch-async.yaml │ ├── 1853-fix-firewall-address-list-error.yaml │ ├── 1878-fix-parameter-type.yaml │ ├── 1888-fix-name-asm-policy-fetch.yaml │ ├── 1902-fix-asm-apm-policy-fetch.yaml │ ├── 1903-fix-mgmt-route-not-idempotent.yaml │ ├── 1923-fix-vs-gtm-dependency.yaml │ ├── 1934-fix-iteration-bug.yaml │ └── 1937-fix-bigip-static-route.yaml ├── 1.8.0 │ ├── 1650-fix-control-char-bigip-policy.yaml │ ├── 1668-fix-aggregate-replace-all.yaml │ ├── 1675-add-event-to-forward-action-bigip-policy-rule.yaml │ ├── 1800-fix-bigip-pool-reuse-node.yaml │ ├── 1809-add-path-contains-bigip-policy-rule.yaml │ ├── 1835-add-http-header-condition-policy-rule.yaml │ ├── 1867-add-remove-action-bigp-policy-rule.yaml │ ├── 1868-add-insert-action-bigp-policy-rule.yaml │ ├── 1871-add-ends-with-any-condition.yaml │ ├── 1873-add-policy-condition-type-tcp-bigip-policy-rule.yaml │ ├── 1876-add-disable-action-policy-rule.yaml │ ├── 1880-add-event-type-to-reset-action-policy-rule.yaml │ ├── 1883-add-replace-type-action-bigip-policy-ryle.yaml │ ├── 1939-fix-error-reporting-bigip-license.yaml │ ├── 1946-fix-bigip-policy-rule-remove-action.yaml │ ├── 1948-fix-invalid-vs-type-bigip-device-info.yaml │ ├── 1957-fix-bigip-device-info-vs-address.yaml │ └── 1968-remove-deprecations.yaml ├── 1.9.0 │ ├── 1952-lookup-plugin-bigiq_license.yaml │ ├── 1970-add-support-checkmode-bigipconfig.yaml │ ├── 1985-add-bigiq-token-refresh.yaml │ ├── SR-bigip-device-license.yaml │ ├── deprecate-python-versions.yaml │ └── fix-asm-policy-fetch-binary.yaml └── 1.9.1 │ ├── 1920-fix-gtm-wideip-wildcardtype.yaml │ ├── 1964-fix-imish-config.yaml │ ├── 1965-fix-bigip-interface.yaml │ ├── 2015-v16-test-fixes.yaml │ ├── 2026-fix-bigiq-provider.yaml │ ├── 2027-fix-bigip-datagroup-key.yaml │ ├── 2029-fix-irules-param-wide-ip.yaml │ ├── fix-teem-version.yaml │ └── fix-v15-v16-tests-http-profile.yaml ├── requirements.action.txt ├── requirements.bare.txt ├── requirements.travis.txt ├── requirements.txt ├── tasks ├── __init__.py ├── collection.py ├── container.py ├── ip.py ├── lib │ ├── __init__.py │ ├── common.py │ └── stubber.py ├── module.py └── test.py ├── test ├── __init__.py ├── integration │ ├── ansible.cfg │ ├── bigip_apm_acl.yaml │ ├── bigip_apm_network_access.yaml │ ├── bigip_apm_policy_fetch.yaml │ ├── bigip_apm_policy_import.yaml │ ├── bigip_appsvcs_extension.yaml │ ├── bigip_asm_advanced_settings.yaml │ ├── bigip_asm_dos_application.yaml │ ├── bigip_asm_policy_fetch.yaml │ ├── bigip_asm_policy_import.yaml │ ├── bigip_asm_policy_manage.yaml │ ├── bigip_asm_policy_server_technology.yaml │ ├── bigip_asm_policy_signature_set.yaml │ ├── bigip_cgnat_lsn_pool.yaml │ ├── bigip_cli_alias.yaml │ ├── bigip_cli_script.yaml │ ├── bigip_command.yaml │ ├── bigip_config.yaml │ ├── bigip_configsync_action.yaml │ ├── bigip_data_group.yaml │ ├── bigip_device_auth.yaml │ ├── bigip_device_auth_ldap.yaml │ ├── bigip_device_auth_radius.yaml │ ├── bigip_device_auth_radius_server.yaml │ ├── bigip_device_certificate.yaml │ ├── bigip_device_connectivity.yaml │ ├── bigip_device_dns.yaml │ ├── bigip_device_group.yaml │ ├── bigip_device_group_member.yaml │ ├── bigip_device_ha_group.yaml │ ├── bigip_device_httpd.yaml │ ├── bigip_device_info.yaml │ ├── bigip_device_license.yaml │ ├── bigip_device_ntp.yaml │ ├── bigip_device_sshd.yaml │ ├── bigip_device_syslog.yaml │ ├── bigip_device_traffic_group.yaml │ ├── bigip_device_trust.yaml │ ├── bigip_dns_cache_resolver.yaml │ ├── bigip_dns_nameserver.yaml │ ├── bigip_dns_resolver.yaml │ ├── bigip_dns_zone.yaml │ ├── bigip_file_copy.yaml │ ├── bigip_firewall_address_list.yaml │ ├── bigip_firewall_dos_profile.yaml │ ├── bigip_firewall_dos_vector.yaml │ ├── bigip_firewall_global_rules.yaml │ ├── bigip_firewall_log_profile.yaml │ ├── bigip_firewall_log_profile_network.yaml │ ├── bigip_firewall_policy.yaml │ ├── bigip_firewall_port_list.yaml │ ├── bigip_firewall_rule.yaml │ ├── bigip_firewall_rule_list.yaml │ ├── bigip_firewall_schedule.yaml │ ├── bigip_gtm_datacenter.yaml │ ├── bigip_gtm_dns_listener.yaml │ ├── bigip_gtm_global.yaml │ ├── bigip_gtm_monitor_bigip.yaml │ ├── bigip_gtm_monitor_external.yaml │ ├── bigip_gtm_monitor_firepass.yaml │ ├── bigip_gtm_monitor_http.yaml │ ├── bigip_gtm_monitor_https.yaml │ ├── bigip_gtm_monitor_tcp.yaml │ ├── bigip_gtm_monitor_tcp_half_open.yaml │ ├── bigip_gtm_pool.yaml │ ├── bigip_gtm_pool_member.yaml │ ├── bigip_gtm_server.yaml │ ├── bigip_gtm_topology_record.yaml │ ├── bigip_gtm_topology_region.yaml │ ├── bigip_gtm_virtual_server.yaml │ ├── bigip_gtm_wide_ip.yaml │ ├── bigip_hostname.yaml │ ├── bigip_iapp_service.yaml │ ├── bigip_iapp_template.yaml │ ├── bigip_ike_peer.yaml │ ├── bigip_imish_config.yaml │ ├── bigip_interface.yaml │ ├── bigip_ipsec_policy.yaml │ ├── bigip_irule.yaml │ ├── bigip_log_destination.yaml │ ├── bigip_log_publisher.yaml │ ├── bigip_ltm_global.yaml │ ├── bigip_lx_package.yaml │ ├── bigip_management_route.yaml │ ├── bigip_message_routing_peer.yaml │ ├── bigip_message_routing_protocol.yaml │ ├── bigip_message_routing_route.yaml │ ├── bigip_message_routing_router.yaml │ ├── bigip_message_routing_transport_config.yaml │ ├── bigip_monitor_dns.yaml │ ├── bigip_monitor_external.yaml │ ├── bigip_monitor_ftp.yaml │ ├── bigip_monitor_gateway_icmp.yaml │ ├── bigip_monitor_http.yaml │ ├── bigip_monitor_https.yaml │ ├── bigip_monitor_icmp.yaml │ ├── bigip_monitor_ldap.yaml │ ├── bigip_monitor_mysql.yaml │ ├── bigip_monitor_oracle.yaml │ ├── bigip_monitor_smtp.yaml │ ├── bigip_monitor_snmp_dca.yaml │ ├── bigip_monitor_tcp.yaml │ ├── bigip_monitor_tcp_echo.yaml │ ├── bigip_monitor_tcp_half_open.yaml │ ├── bigip_monitor_udp.yaml │ ├── bigip_network_globals.yaml │ ├── bigip_node.yaml │ ├── bigip_partition.yaml │ ├── bigip_password_policy.yaml │ ├── bigip_policy.yaml │ ├── bigip_policy_rule.yaml │ ├── bigip_pool.yaml │ ├── bigip_pool_member.yaml │ ├── bigip_profile_analytics.yaml │ ├── bigip_profile_client_ssl.yaml │ ├── bigip_profile_dns.yaml │ ├── bigip_profile_fastl4.yaml │ ├── bigip_profile_ftp.yaml │ ├── bigip_profile_http.yaml │ ├── bigip_profile_http2.yaml │ ├── bigip_profile_http_compression.yaml │ ├── bigip_profile_oneconnect.yaml │ ├── bigip_profile_persistence_cookie.yaml │ ├── bigip_profile_persistence_src_addr.yaml │ ├── bigip_profile_persistence_universal.yaml │ ├── bigip_profile_server_ssl.yaml │ ├── bigip_profile_sip.yaml │ ├── bigip_profile_tcp.yaml │ ├── bigip_profile_udp.yaml │ ├── bigip_provision.yaml │ ├── bigip_provision_async.yaml │ ├── bigip_qkview.yaml │ ├── bigip_remote_role.yaml │ ├── bigip_remote_syslog.yaml │ ├── bigip_remote_user.yaml │ ├── bigip_routedomain.yaml │ ├── bigip_selfip.yaml │ ├── bigip_service_policy.yaml │ ├── bigip_smtp.yaml │ ├── bigip_snat_pool.yaml │ ├── bigip_snat_translation.yaml │ ├── bigip_snmp.yaml │ ├── bigip_snmp_community.yaml │ ├── bigip_snmp_trap.yaml │ ├── bigip_software_image.yaml │ ├── bigip_software_install.yaml │ ├── bigip_software_update.yaml │ ├── bigip_ssl_certificate.yaml │ ├── bigip_ssl_csr.yaml │ ├── bigip_ssl_key.yaml │ ├── bigip_ssl_key_cert.yaml │ ├── bigip_ssl_ocsp.yaml │ ├── bigip_static_route.yaml │ ├── bigip_sys_daemon_log_tmm.yaml │ ├── bigip_sys_db.yaml │ ├── bigip_sys_global.yaml │ ├── bigip_timer_policy.yaml │ ├── bigip_traffic_selector.yaml │ ├── bigip_trunk.yaml │ ├── bigip_tunnel.yaml │ ├── bigip_ucs.yaml │ ├── bigip_ucs_fetch.yaml │ ├── bigip_user.yaml │ ├── bigip_vcmp_guest.yaml │ ├── bigip_virtual_address.yaml │ ├── bigip_virtual_server.yaml │ ├── bigip_vlan.yaml │ ├── bigip_wait.yaml │ ├── bigiq_application_fasthttp.yaml │ ├── bigiq_application_fastl4_tcp.yaml │ ├── bigiq_application_fastl4_udp.yaml │ ├── bigiq_application_http.yaml │ ├── bigiq_application_https_offload.yaml │ ├── bigiq_application_https_waf.yaml │ ├── bigiq_device_discovery.yaml │ ├── bigiq_device_info.yaml │ ├── bigiq_regkey_license.yaml │ ├── bigiq_regkey_license_assignment.yaml │ ├── bigiq_regkey_pool.yaml │ ├── bigiq_utility_license.yaml │ ├── bigiq_utility_license_assignment.yaml │ ├── files │ │ └── cleanup.py │ ├── inventory │ │ └── hosts.example │ └── targets │ │ ├── bigip_apm_acl │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02006.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_apm_network_access │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_apm_policy_fetch │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── fixtures │ │ │ ├── v14_1_profile.tar.gz │ │ │ ├── v15_1_profile.tar.gz │ │ │ └── v16_1_profile.tar.gz │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── export-v14-1.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_apm_policy_import │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── v14_1_policy.tar.gz │ │ │ ├── v14_1_profile.tar.gz │ │ │ ├── v15_1_policy.tar.gz │ │ │ ├── v15_1_profile.tar.gz │ │ │ ├── v16_1_policy.tar.gz │ │ │ └── v16_1_profile.tar.gz │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── import-v14-1.yaml │ │ │ ├── import-v15-1.yaml │ │ │ ├── import-v16-1.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_asm_advanced_settings │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_asm_dos_application │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_asm_policy_fetch │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── large_asm_file │ │ │ └── large_asm_file.xml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01859.yaml │ │ │ ├── issue-01888.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_asm_policy_import │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── v1_policy_default_binary.plc │ │ │ ├── v1_policy_default_compact_format_disabled.xml │ │ │ ├── v1_policy_default_compact_format_enabled.xml │ │ │ ├── v2_policy_default_binary.plc │ │ │ ├── v2_policy_default_compact_format_disabled.xml │ │ │ └── v2_policy_default_compact_format_enabled.xml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── fmfa-00608.yaml │ │ │ ├── issue-01490.yaml │ │ │ ├── issue-01561.yaml │ │ │ ├── issue-01978.yaml │ │ │ ├── issue-02067.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── teardown.yaml │ │ │ ├── v1-policy.yaml │ │ │ └── v2-policy.yaml │ │ ├── bigip_asm_policy_manage │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── test_policy-changed.xml │ │ │ ├── test_policy.xml │ │ │ └── v1_policy_default_compact_format_enabled.xml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01730.yaml │ │ │ ├── issue-02143.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_asm_policy_server_technology │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── teardown.yaml │ │ │ └── v13tests.yaml │ │ ├── bigip_asm_policy_signature_set │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_cgnat_lsn_pool │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_cli_alias │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── scope-private.yaml │ │ │ ├── scope-shared.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_cli_script │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── script01.tcl │ │ │ └── script02.tcl │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_command │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── www.example.com.cert │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ │ ├── handle-pipe.yaml │ │ │ │ ├── issue-00381.yaml │ │ │ │ ├── issue-00391.yaml │ │ │ │ ├── issue-00556.yaml │ │ │ │ ├── issue-00589.yaml │ │ │ │ ├── issue-00658.yaml │ │ │ │ ├── issue-00705.yaml │ │ │ │ ├── issue-00719.yaml │ │ │ │ ├── issue-00785.yaml │ │ │ │ ├── main.yaml │ │ │ │ ├── setup.yaml │ │ │ │ └── teardown.yaml │ │ │ ├── provider-cli.yaml │ │ │ ├── provider-cli │ │ │ │ ├── issue-00705.yaml │ │ │ │ ├── issue-01407.yaml │ │ │ │ ├── issue-01728.yaml │ │ │ │ ├── main.yaml │ │ │ │ └── ssh-key.yaml │ │ │ ├── provider-rest.yaml │ │ │ └── provider-rest │ │ │ │ ├── issue-00705.yaml │ │ │ │ ├── issue-00843.yaml │ │ │ │ ├── main.yaml │ │ │ │ └── sleep.yaml │ │ └── vars │ │ │ ├── issue-00381.yaml │ │ │ ├── issue-00705.yaml │ │ │ └── issue-00843.yaml │ │ ├── bigip_config │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── bigip.scf │ │ │ ├── issue-00549.scf │ │ │ └── issue-00710.scf │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00549.yaml │ │ │ ├── issue-00710.yaml │ │ │ └── main.yaml │ │ ├── bigip_configsync_action │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01361.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── teardown.yaml │ │ │ ├── test-device-to-group.yaml │ │ │ └── test-pull-recent-device.yaml │ │ ├── bigip_data_group │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── address1.txt │ │ │ ├── address2.txt │ │ │ ├── address3.txt │ │ │ ├── integer1.txt │ │ │ ├── integer2.txt │ │ │ ├── issue-00652.txt │ │ │ ├── issue-01607.txt │ │ │ ├── string1.txt │ │ │ └── string2.txt │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── external.yaml │ │ │ ├── external │ │ │ ├── address.yaml │ │ │ ├── integer.yaml │ │ │ └── string.yaml │ │ │ ├── internal.yaml │ │ │ ├── internal │ │ │ ├── address.yaml │ │ │ ├── integer.yaml │ │ │ └── string.yaml │ │ │ ├── issue-00652.yaml │ │ │ ├── issue-00815.yaml │ │ │ ├── issue-01083.yaml │ │ │ ├── issue-01210.yaml │ │ │ ├── issue-01346.yaml │ │ │ ├── issue-01587.yaml │ │ │ ├── issue-01607.yaml │ │ │ ├── issue-02018.yaml │ │ │ ├── issue-02246.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_auth │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ ├── issue-01399.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── tacacs.yaml │ │ │ └── teardown.yaml │ │ │ ├── provider.yaml │ │ │ └── provider │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── tacacs.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_auth_ldap │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01182.yaml │ │ │ ├── issue-02001.yaml │ │ │ ├── issue-02251.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_auth_radius │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_auth_radius_server │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_certificate │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02174.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_connectivity │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00801.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_dns │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yaml │ │ ├── bigip_device_group │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00806.yaml │ │ │ ├── issue-02261.yaml │ │ │ └── main.yaml │ │ ├── bigip_device_group_member │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yaml │ │ ├── bigip_device_ha_group │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_httpd │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00493.yaml │ │ │ ├── issue-00522.yaml │ │ │ ├── issue-00587.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-00493.yaml │ │ ├── bigip_device_info │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── MyApp-0.1.0-0001.noarch.rpm │ │ │ ├── f5.http.v1.2.0rc4.parameters.json │ │ │ ├── f5.http.v1.2.0rc4.tmpl │ │ │ ├── v14_1_policy.tar.gz │ │ │ ├── v14_1_profile.tar.gz │ │ │ ├── v15_1_policy.tar.gz │ │ │ ├── v15_1_profile.tar.gz │ │ │ └── v2_policy_default_compact_format_enabled.xml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── hotfix-images.yaml │ │ │ ├── issue-00082.yaml │ │ │ ├── issue-00149.yaml │ │ │ ├── issue-00289.yaml │ │ │ ├── issue-00327.yaml │ │ │ ├── issue-00700.yaml │ │ │ ├── issue-00799.yaml │ │ │ ├── issue-00819.yaml │ │ │ ├── issue-00897.yaml │ │ │ ├── issue-01017.yaml │ │ │ ├── issue-01091.yaml │ │ │ ├── issue-01094.yaml │ │ │ ├── issue-01095.yaml │ │ │ ├── issue-01159.yaml │ │ │ ├── issue-01191.yaml │ │ │ ├── issue-01321.yaml │ │ │ ├── issue-01364.yaml │ │ │ ├── issue-01391.yaml │ │ │ ├── issue-01423.yaml │ │ │ ├── issue-01497.yaml │ │ │ ├── issue-01563.yaml │ │ │ ├── issue-01596.yaml │ │ │ ├── issue-01630.yaml │ │ │ ├── issue-01687.yaml │ │ │ ├── issue-01757.yaml │ │ │ ├── issue-01777.yaml │ │ │ ├── issue-01778.yaml │ │ │ ├── issue-01784.yaml │ │ │ ├── issue-01948.yaml │ │ │ ├── issue-01957.yaml │ │ │ ├── issue-02123.yaml │ │ │ ├── issue-02170.yaml │ │ │ ├── issue-02209.yaml │ │ │ ├── issue-02294.yaml │ │ │ ├── issue-cfe.yaml │ │ │ ├── issue-fmfa0581.yaml │ │ │ ├── issue-fmfa0582.yaml │ │ │ ├── issue-fmfa0583.yaml │ │ │ ├── issue-infraano449.yaml │ │ │ ├── issue-license-info.yaml │ │ │ ├── issue-ucs.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── software-images.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── issue-00289.yaml │ │ │ ├── issue-01091.yaml │ │ │ ├── issue-01191.yaml │ │ │ └── issue-01563.yaml │ │ ├── bigip_device_license │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00602.yaml │ │ │ ├── issue-01112.yaml │ │ │ ├── issue-02142.yaml │ │ │ ├── issue-02275.yaml │ │ │ ├── issue-1810.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_device_ntp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yaml │ │ ├── bigip_device_sshd │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── banner.txt │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01181.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── v12-tests.yaml │ │ └── templates │ │ │ └── banner.txt │ │ ├── bigip_device_syslog │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── auth_priv_from.yaml │ │ │ ├── auth_priv_to.yaml │ │ │ ├── cron_from.yaml │ │ │ ├── cron_to.yaml │ │ │ ├── daemon_from.yaml │ │ │ ├── daemon_to.yaml │ │ │ ├── kern_from.yaml │ │ │ ├── kern_to.yaml │ │ │ ├── local6_from.yaml │ │ │ ├── local6_to.yaml │ │ │ ├── mail_from.yaml │ │ │ ├── mail_to.yaml │ │ │ ├── main.yaml │ │ │ ├── messages_from.yaml │ │ │ ├── messages_to.yaml │ │ │ ├── setup.yaml │ │ │ ├── teardown.yaml │ │ │ ├── user_log_from.yaml │ │ │ └── user_log_to.yaml │ │ ├── bigip_device_traffic_group │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00643.yaml │ │ │ ├── issue-01216.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-01216.yaml │ │ ├── bigip_device_trust │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00704.yaml │ │ │ └── main.yaml │ │ ├── bigip_dns_cache_resolver │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_dns_nameserver │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_dns_resolver │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_dns_zone │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_file_copy │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── ifile1.txt │ │ │ ├── lw4o61.txt │ │ │ └── monitor1.sh │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── external-monitor.yaml │ │ │ ├── ifile.yaml │ │ │ ├── lw4o6-table.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_address_list │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00623.yaml │ │ │ ├── issue-00871.yaml │ │ │ ├── issue-02454.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_dos_profile │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_dos_vector │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── device-config.yaml │ │ │ ├── device-config │ │ │ ├── a.yaml │ │ │ ├── aaaa.yaml │ │ │ ├── ack.yaml │ │ │ ├── any.yaml │ │ │ ├── arp-flood.yaml │ │ │ ├── axfr.yaml │ │ │ ├── bad-ext-hdr-order.yaml │ │ │ ├── bad-icmp-chksum.yaml │ │ │ ├── bad-icmp-frame.yaml │ │ │ ├── bad-igmp-frame.yaml │ │ │ ├── bad-ip-opt.yaml │ │ │ ├── bad-ipv6-hop-cnt.yaml │ │ │ ├── bad-ipv6-ver.yaml │ │ │ ├── bad-sctp-chksum.yaml │ │ │ ├── bad-tcp-chksum.yaml │ │ │ ├── bad-tcp-flags-all-clr.yaml │ │ │ ├── bad-tcp-flags-all-set.yaml │ │ │ ├── bad-ttl-val.yaml │ │ │ ├── bad-udp-chksum.yaml │ │ │ ├── bad-udp-hdr.yaml │ │ │ ├── bad-ver.yaml │ │ │ ├── bye.yaml │ │ │ ├── cancel.yaml │ │ │ ├── cname.yaml │ │ │ ├── dns-malformed.yaml │ │ │ ├── dns-nxdomain-query.yaml │ │ │ ├── dns-oversize.yaml │ │ │ ├── dns-response-flood.yaml │ │ │ ├── dup-ext-hdr.yaml │ │ │ ├── ether-brdcst-pkt.yaml │ │ │ ├── ether-mac-sa-eq-da.yaml │ │ │ ├── ether-multicst-pkt.yaml │ │ │ ├── ext-hdr-too-large.yaml │ │ │ ├── fin-only-set.yaml │ │ │ ├── flood.yaml │ │ │ ├── hdr-len-gt-l2-len.yaml │ │ │ ├── hdr-len-too-short.yaml │ │ │ ├── hop-cnt-low.yaml │ │ │ ├── host-unreachable.yaml │ │ │ ├── icmp-frag.yaml │ │ │ ├── icmp-frame-too-large.yaml │ │ │ ├── icmpv4-flood.yaml │ │ │ ├── icmpv6-flood.yaml │ │ │ ├── igmp-flood.yaml │ │ │ ├── igmp-frag-flood.yaml │ │ │ ├── invite.yaml │ │ │ ├── ip-bad-src.yaml │ │ │ ├── ip-err-chksum.yaml │ │ │ ├── ip-frag-flood.yaml │ │ │ ├── ip-len-gt-l2-len.yaml │ │ │ ├── ip-low-ttl.yaml │ │ │ ├── ip-opt-frames.yaml │ │ │ ├── ip-other-frag.yaml │ │ │ ├── ip-overlap-frag.yaml │ │ │ ├── ip-short-frag.yaml │ │ │ ├── ip-uncommon-proto.yaml │ │ │ ├── ip-unk-prot.yaml │ │ │ ├── ipv4-mapped-ipv6.yaml │ │ │ ├── ipv6-atomic-frag.yaml │ │ │ ├── ipv6-bad-src.yaml │ │ │ ├── ipv6-ext-hdr-frames.yaml │ │ │ ├── ipv6-frag-flood.yaml │ │ │ ├── ipv6-len-gt-l2-len.yaml │ │ │ ├── ipv6-other-frag.yaml │ │ │ ├── ipv6-overlap-frag.yaml │ │ │ ├── ipv6-short-frag.yaml │ │ │ ├── ixfr.yaml │ │ │ ├── l2-len-ggt-ip-len.yaml │ │ │ ├── l4-ext-hdrs-go-end.yaml │ │ │ ├── land-attack.yaml │ │ │ ├── message.yaml │ │ │ ├── mx.yaml │ │ │ ├── no-l4.yaml │ │ │ ├── no-listener-match.yaml │ │ │ ├── non-tcp-connection.yaml │ │ │ ├── notify.yaml │ │ │ ├── ns.yaml │ │ │ ├── opt-present-with-illegal-len.yaml │ │ │ ├── options.yaml │ │ │ ├── other-dns.yaml │ │ │ ├── other-sip.yaml │ │ │ ├── payload-len-ls-l2-len.yaml │ │ │ ├── prack.yaml │ │ │ ├── ptr.yaml │ │ │ ├── publish.yaml │ │ │ ├── qdcount.yaml │ │ │ ├── register.yaml │ │ │ ├── routing-header-type-0.yaml │ │ │ ├── sip-malformed.yaml │ │ │ ├── soa.yaml │ │ │ ├── srv.yaml │ │ │ ├── subscribe.yaml │ │ │ ├── sweep.yaml │ │ │ ├── syn-and-fin-set.yaml │ │ │ ├── tcp-ack-flood.yaml │ │ │ ├── tcp-bad-urg.yaml │ │ │ ├── tcp-half-open.yaml │ │ │ ├── tcp-hdr-len-gt-l2-len.yaml │ │ │ ├── tcp-hdr-len-too-short.yaml │ │ │ ├── tcp-opt-overruns-tcp-hdr.yaml │ │ │ ├── tcp-psh-flood.yaml │ │ │ ├── tcp-rst-flood.yaml │ │ │ ├── tcp-syn-flood.yaml │ │ │ ├── tcp-syn-oversize.yaml │ │ │ ├── tcp-synack-flood.yaml │ │ │ ├── tcp-window-size.yaml │ │ │ ├── tidcmp.yaml │ │ │ ├── too-many-ext-hdrs.yaml │ │ │ ├── txt.yaml │ │ │ ├── udp-flood.yaml │ │ │ ├── unk-ipopt-type.yaml │ │ │ ├── unk-tcp-opt-type.yaml │ │ │ └── uri-limit.yaml │ │ │ ├── dos-network.yaml │ │ │ ├── dos-network │ │ │ ├── ext-hdr-too-large.yaml │ │ │ ├── hop-cnt-low.yaml │ │ │ ├── host-unreachable.yaml │ │ │ ├── icmp-frag.yaml │ │ │ ├── icmpv4-flood.yaml │ │ │ ├── icmpv6-flood.yaml │ │ │ ├── ip-frag-flood.yaml │ │ │ ├── ip-low-ttl.yaml │ │ │ ├── ip-opt-frames.yaml │ │ │ ├── ipv6-ext-hdr-frames.yaml │ │ │ ├── ipv6-frag-flood.yaml │ │ │ ├── opt-present-with-illegal-len.yaml │ │ │ ├── sweep.yaml │ │ │ ├── tcp-bad-urg.yaml │ │ │ ├── tcp-half-open.yaml │ │ │ ├── tcp-opt-overruns-tcp-hdr.yaml │ │ │ ├── tcp-psh-flood.yaml │ │ │ ├── tcp-rst-flood.yaml │ │ │ ├── tcp-syn-flood.yaml │ │ │ ├── tcp-syn-oversize.yaml │ │ │ ├── tcp-synack-flood.yaml │ │ │ ├── tcp-window-size.yaml │ │ │ ├── tidcmp.yaml │ │ │ ├── too-many-ext-hdrs.yaml │ │ │ ├── udp-flood.yaml │ │ │ └── unk-tcp-opt-type.yaml │ │ │ ├── main.yaml │ │ │ ├── protocol-dns.yaml │ │ │ ├── protocol-dns │ │ │ ├── a.yaml │ │ │ ├── aaaa.yaml │ │ │ ├── any.yaml │ │ │ ├── axfr.yaml │ │ │ ├── cname.yaml │ │ │ ├── dns-malformed.yaml │ │ │ ├── ixfr.yaml │ │ │ ├── mx.yaml │ │ │ ├── ns.yaml │ │ │ ├── other.yaml │ │ │ ├── ptr.yaml │ │ │ ├── qdcount.yaml │ │ │ ├── soa.yaml │ │ │ ├── srv.yaml │ │ │ └── txt.yaml │ │ │ ├── protocol-sip.yaml │ │ │ ├── protocol-sip │ │ │ ├── ack.yaml │ │ │ ├── bye.yaml │ │ │ ├── cancel.yaml │ │ │ ├── invite.yaml │ │ │ ├── message.yaml │ │ │ ├── notify.yaml │ │ │ ├── options.yaml │ │ │ ├── other.yaml │ │ │ ├── prack.yaml │ │ │ ├── publish.yaml │ │ │ ├── register.yaml │ │ │ ├── sip-malformed.yaml │ │ │ ├── subscribe.yaml │ │ │ └── uri-limit.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_global_rules │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_log_profile │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_log_profile_network │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_policy │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_port_list │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── issue-00512.txt │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00512.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-00512.yaml │ │ ├── bigip_firewall_rule │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── fmfa-326.yaml │ │ │ ├── issue-01314.yaml │ │ │ ├── issue-1731.yaml │ │ │ ├── issue-2290.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-01314.yaml │ │ ├── bigip_firewall_rule_list │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00489.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_firewall_schedule │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_datacenter │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_dns_listener │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_global │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_monitor_bigip │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02379.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_monitor_external │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_monitor_firepass │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02379.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_monitor_http │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02379.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_monitor_https │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02379.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_monitor_tcp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02379.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_monitor_tcp_half_open │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02379.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_pool │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ │ ├── issue-00125.yaml │ │ │ │ ├── issue-00140.yaml │ │ │ │ ├── issue-00142.yaml │ │ │ │ ├── issue-00375.yaml │ │ │ │ ├── issue-00690.yaml │ │ │ │ ├── main.yaml │ │ │ │ ├── setup.yaml │ │ │ │ ├── teardown.yaml │ │ │ │ ├── type-a-gtm-pools.yaml │ │ │ │ ├── type-aaaa-gtm-pools.yaml │ │ │ │ ├── type-cname-gtm-pools.yaml │ │ │ │ ├── type-mx-gtm-pools.yaml │ │ │ │ ├── type-naptr-gtm-pools.yaml │ │ │ │ ├── type-srv-gtm-pools.yaml │ │ │ │ └── typed-gtm-pools.yaml │ │ │ ├── provider.yaml │ │ │ └── provider │ │ │ │ ├── issue-00958.yaml │ │ │ │ ├── issue-00989.yaml │ │ │ │ └── main.yaml │ │ └── vars │ │ │ ├── issue-00140.yaml │ │ │ ├── issue-00142.yaml │ │ │ ├── issue-00375.yaml │ │ │ └── issue-00690.yaml │ │ ├── bigip_gtm_pool_member │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00716.yaml │ │ │ ├── issue-00790.yaml │ │ │ ├── issue-01153.yaml │ │ │ ├── issue-01185.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-00716.yaml │ │ ├── bigip_gtm_server │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00728.yaml │ │ │ ├── issue-00771.yaml │ │ │ ├── issue-00772.yaml │ │ │ ├── issue-00773.yaml │ │ │ ├── issue-00774.yaml │ │ │ ├── issue-00950.yaml │ │ │ ├── issue-01266.yaml │ │ │ ├── issue-02429.yaml │ │ │ ├── main.yaml │ │ │ ├── server-types │ │ │ │ ├── alteon-ace-director.yaml │ │ │ │ ├── bigip-redundant.yaml │ │ │ │ ├── bigip-single.yaml │ │ │ │ ├── cacheflow.yaml │ │ │ │ ├── cisco-css.yaml │ │ │ │ ├── cisco-local-director-v2.yaml │ │ │ │ ├── cisco-local-director-v3.yaml │ │ │ │ ├── cisco-server-load-balancer.yaml │ │ │ │ ├── extreme.yaml │ │ │ │ ├── foundry-server-iron.yaml │ │ │ │ ├── generic-host.yaml │ │ │ │ ├── generic-load-balancer.yaml │ │ │ │ ├── netapp.yaml │ │ │ │ ├── radware-wsd.yaml │ │ │ │ ├── sun-solaris.yaml │ │ │ │ ├── windows-2000-server.yaml │ │ │ │ └── windows-nt-4.0.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── issue-00771.yaml │ │ │ ├── issue-00772.yaml │ │ │ └── issue-00950.yaml │ │ ├── bigip_gtm_topology_record │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_topology_region │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01355.yaml │ │ │ ├── issue-02376.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_virtual_server │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00718.yaml │ │ │ ├── issue-01186.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_gtm_wide_ip │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── issue-02031.tcl │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ │ ├── issue-00124.yaml │ │ │ │ ├── issue-00607.yaml │ │ │ │ ├── issue-00665.yaml │ │ │ │ ├── issue-00821.yaml │ │ │ │ ├── issue-01597.yaml │ │ │ │ ├── issue-01920.yaml │ │ │ │ ├── issue-02031.yaml │ │ │ │ ├── issue-disabled.yaml │ │ │ │ ├── issue-persistence.yaml │ │ │ │ ├── main.yaml │ │ │ │ ├── type-a-gtm-wideip.yaml │ │ │ │ ├── type-aaaa-gtm-wideip.yaml │ │ │ │ ├── type-cname-gtm-wideip.yaml │ │ │ │ ├── type-mx-gtm-wideip.yaml │ │ │ │ ├── type-naptr-gtm-wideip.yaml │ │ │ │ ├── type-srv-gtm-wideip.yaml │ │ │ │ └── typed-gtm-wideip.yaml │ │ │ ├── provider.yaml │ │ │ └── provider │ │ │ │ ├── issue-00951.yaml │ │ │ │ ├── issue-00954.yaml │ │ │ │ └── main.yaml │ │ └── vars │ │ │ ├── issue-00124.yaml │ │ │ ├── issue-00607.yaml │ │ │ ├── issue-00665.yaml │ │ │ ├── issue-00821.yaml │ │ │ ├── issue-01920.yaml │ │ │ └── issue-persistence.yaml │ │ ├── bigip_hostname │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00601.yaml │ │ │ ├── main.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-00601.yaml │ │ ├── bigip_iapp_service │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── appsvcs_integration_v2.0.002.tmpl │ │ │ ├── appsvcs_integration_v2.0.004.tmpl │ │ │ ├── f5-http-url-routing-lb.parameters.json │ │ │ ├── f5.citrix_vdi.v2.4.2.tmpl │ │ │ ├── f5.http.v1.2.0rc4.parameters-simple.json │ │ │ ├── f5.http.v1.2.0rc4.parameters.json │ │ │ ├── f5.http.v1.2.0rc4.tmpl │ │ │ ├── f5.http.v1.2.0rc4_myhttps_w_asm_payload.json │ │ │ ├── f5.http.v1.2.0rc4_wildcard_http_vip_payload.json │ │ │ ├── issue-00137-description.json │ │ │ ├── issue-00137-device_group.json │ │ │ ├── issue-00137-metadata.json │ │ │ ├── issue-00359-strict-updates-disabled.parameters.json │ │ │ ├── issue-00359-strict-updates-enabled.parameters.json │ │ │ ├── issue.00496.local.crt │ │ │ ├── issue.00496.local.key │ │ │ └── web_frontends.iapp │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00089.yaml │ │ │ ├── issue-00137.yaml │ │ │ ├── issue-00138.yaml │ │ │ ├── issue-00254.yaml │ │ │ ├── issue-00263.yaml │ │ │ ├── issue-00307.yaml │ │ │ ├── issue-00354.yaml │ │ │ ├── issue-00359.yaml │ │ │ ├── issue-00496.yaml │ │ │ ├── issue-00879.yaml │ │ │ └── main.yaml │ │ └── templates │ │ │ └── issue-00138 │ │ │ ├── original.iapp │ │ │ └── updated.iapp │ │ ├── bigip_iapp_template │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── README.md │ │ │ ├── appsvcs_integration_v2.0_001.tmpl │ │ │ ├── basic-iapp-changed.tmpl │ │ │ ├── basic-iapp.tmpl │ │ │ ├── f5.accel_disable_by_cookie.v1.0.0.tmpl │ │ │ ├── f5.citrix_vdi.v2.4.0.tmpl │ │ │ ├── f5.http.v1.2.0rc4.tmpl │ │ │ ├── f5.microsoft_adfs.v1.0.0.tmpl │ │ │ ├── f5.microsoft_dynamics_crm_2011_2013.v1.0.0.tmpl │ │ │ ├── f5.microsoft_exchange_2010_2013_cas.v1.6.0.tmpl │ │ │ ├── f5.microsoft_exchange_2016.v1.0.0.tmpl │ │ │ ├── f5.microsoft_lync_server_2010_2013.v1.3.0.tmpl │ │ │ ├── f5.microsoft_office_365_idp.v1.1.0.tmpl │ │ │ ├── f5.microsoft_rds_remote_access.v1.0.2.tmpl │ │ │ ├── f5.microsoft_rds_session_host.v1.0.3.tmpl │ │ │ ├── f5.microsoft_sharepoint_2010_2013.v1.2.1.tmpl │ │ │ ├── f5.ssl_intercept.v1.0.0.tmpl │ │ │ ├── f5.vmware_view.v1.5.1.tmpl │ │ │ ├── issue-0744.tmpl │ │ │ └── web_frontends.tmpl │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00126.yaml │ │ │ ├── issue-00136.yaml │ │ │ ├── issue-00438.yaml │ │ │ ├── issue-00738.yaml │ │ │ ├── issue-00744.yaml │ │ │ ├── main.yaml │ │ │ ├── test-force-with-service.yaml │ │ │ ├── test-force-without-service.yaml │ │ │ ├── test-force.yaml │ │ │ └── test-no-force-with-service.yaml │ │ └── templates │ │ │ ├── appsvcs_integration_v2.0-001_001.tmpl │ │ │ ├── base-network-config.tmpl │ │ │ └── issue-00136 │ │ │ ├── original.iapp │ │ │ └── updated.iapp │ │ ├── bigip_ike_peer │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── cert1.crt │ │ │ └── cert1.key │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01035.yaml │ │ │ ├── issue-01345.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-01035.yaml │ │ ├── bigip_imish_config │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── config01.txt │ │ │ ├── config02.txt │ │ │ └── config03.txt │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01618.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_interface │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01965.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_ipsec_policy │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01336.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-01336.yaml │ │ ├── bigip_irule │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── irule-01.tcl │ │ │ ├── irule-02.tcl │ │ │ └── issue-00416.tcl │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00042.yaml │ │ │ ├── issue-00316.yaml │ │ │ ├── issue-00416.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── templates │ │ │ ├── irule-01.tcl │ │ │ └── irule-02.tcl │ │ └── vars │ │ │ └── issue-00416.yaml │ │ ├── bigip_log_destination │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00824.yaml │ │ │ ├── main.yaml │ │ │ ├── remote-high-speed-log-new.yaml │ │ │ ├── remote-syslog-new.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_log_publisher │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_ltm_global │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_lx_package │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── MyApp-0.1.0-0001.noarch.rpm │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00730.yaml │ │ │ ├── issue-01717.yaml │ │ │ └── main.yaml │ │ ├── bigip_management_route │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01903.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_message_routing_peer │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_message_routing_protocol │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_message_routing_route │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_message_routing_router │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_message_routing_transport_config │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── templates │ │ │ └── irule-02.tcl │ │ ├── bigip_monitor_dns │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00833.yaml │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-00833.yaml │ │ ├── bigip_monitor_external │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── monitor.sh │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00731295.yaml │ │ │ ├── issue-00778.yaml │ │ │ ├── issue-00836.yaml │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-00836.yaml │ │ ├── bigip_monitor_ftp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_monitor_gateway_icmp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_monitor_http │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00834.yaml │ │ │ ├── issue-01028.yaml │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-01377.yaml │ │ │ ├── issue-01932.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ └── main.yaml │ │ └── vars │ │ │ ├── issue-00834.yaml │ │ │ └── issue-01377.yaml │ │ ├── bigip_monitor_https │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00535.yaml │ │ │ ├── issue-00826.yaml │ │ │ ├── issue-00835.yaml │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-01377.yaml │ │ │ ├── issue-01620.yaml │ │ │ ├── issue-02020.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── issue-00835.yaml │ │ │ └── issue-01377.yaml │ │ ├── bigip_monitor_icmp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_monitor_ldap │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-01353.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02226.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_monitor_mysql │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_monitor_oracle │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_monitor_smtp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_monitor_snmp_dca │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00837.yaml │ │ │ └── main.yaml │ │ └── vars │ │ │ └── issue-00837.yaml │ │ ├── bigip_monitor_tcp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00838.yaml │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── issue-recv-disable.yaml │ │ │ └── main.yaml │ │ └── vars │ │ │ └── issue-00838.yaml │ │ ├── bigip_monitor_tcp_echo │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00839.yaml │ │ │ ├── issue-02254.yaml │ │ │ └── main.yaml │ │ └── vars │ │ │ └── issue-00839.yaml │ │ ├── bigip_monitor_tcp_half_open │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00840.yaml │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ └── main.yaml │ │ └── vars │ │ │ └── issue-00840.yaml │ │ ├── bigip_monitor_udp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00841.yaml │ │ │ ├── issue-01074.yaml │ │ │ ├── issue-02163.yaml │ │ │ ├── issue-02254.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-00841.yaml │ │ ├── bigip_network_globals │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01581.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-01581.yaml │ │ ├── bigip_node │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── infraano-00712.yaml │ │ │ ├── issue-00732.yaml │ │ │ ├── issue-00740.yaml │ │ │ ├── issue-00742.yaml │ │ │ ├── issue-00804.yaml │ │ │ ├── issue-00810.yaml │ │ │ ├── issue-01381.yaml │ │ │ ├── main.yaml │ │ │ ├── node-by-address-ipv4.yaml │ │ │ ├── node-by-address-ipv6.yaml │ │ │ ├── node-by-address.yaml │ │ │ ├── node-by-fqdn.yaml │ │ │ ├── node-monitors.yaml │ │ │ ├── status-disabled.yaml │ │ │ ├── status-enabled.yaml │ │ │ ├── status-offline.yaml │ │ │ ├── status-present.yaml │ │ │ └── statuses.yaml │ │ └── vars │ │ │ ├── issue-00732.yaml │ │ │ └── node-monitors.yaml │ │ ├── bigip_partition │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01052.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_password_policy │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_policy │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00453.yaml │ │ │ ├── issue-00568.yaml │ │ │ ├── issue-01650.yaml │ │ │ ├── main-draft.yaml │ │ │ ├── main-no-draft.yaml │ │ │ ├── main.yaml │ │ │ └── setup.yaml │ │ └── vars │ │ │ └── issue-00453.yaml │ │ ├── bigip_policy_rule │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── address1.txt │ │ │ ├── v1_policy_default_compact_format_enabled.xml │ │ │ └── v2_policy_default_compact_format_enabled.xml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── http-method-support.yaml │ │ │ ├── issue-00727.yaml │ │ │ ├── issue-00889.yaml │ │ │ ├── issue-00899.yaml │ │ │ ├── issue-01405.yaml │ │ │ ├── issue-01413.yaml │ │ │ ├── issue-01521.yaml │ │ │ ├── issue-01543.yaml │ │ │ ├── issue-01545.yaml │ │ │ ├── issue-01546.yaml │ │ │ ├── issue-01678.yaml │ │ │ ├── issue-01809.yaml │ │ │ ├── issue-01835.yaml │ │ │ ├── issue-01867.yaml │ │ │ ├── issue-01868.yaml │ │ │ ├── issue-01871.yaml │ │ │ ├── issue-01873.yaml │ │ │ ├── issue-01876.yaml │ │ │ ├── issue-01880.yaml │ │ │ ├── issue-01883.yaml │ │ │ ├── issue-01946.yaml │ │ │ ├── issue-01998.yaml │ │ │ ├── issue-02002.yaml │ │ │ ├── issue-02048.yaml │ │ │ ├── issue-02052.yaml │ │ │ ├── issue-02083.yaml │ │ │ ├── issue-02253.yaml │ │ │ ├── issue-02308.yaml │ │ │ ├── issue-02350.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_pool │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── change-pool-lb-method.yaml │ │ │ ├── issue-00331.yaml │ │ │ ├── issue-00340.yaml │ │ │ ├── issue-00341.yaml │ │ │ ├── issue-00348.yaml │ │ │ ├── issue-00362.yaml │ │ │ ├── issue-00441.yaml │ │ │ ├── issue-00456.yaml │ │ │ ├── issue-00572.yaml │ │ │ ├── issue-00679.yaml │ │ │ ├── issue-01158.yaml │ │ │ ├── issue-02222.yaml │ │ │ ├── issue-2347.yaml │ │ │ ├── main.yaml │ │ │ └── sr-1-8210113510.yaml │ │ └── vars │ │ │ ├── issue-00331.yaml │ │ │ ├── issue-00340.yaml │ │ │ ├── issue-00341.yaml │ │ │ ├── issue-00348.yaml │ │ │ ├── issue-00362.yaml │ │ │ ├── issue-00441.yaml │ │ │ ├── issue-01158.yaml │ │ │ └── sr-1-8210113510.yaml │ │ ├── bigip_pool_member │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ ├── issue-00573.yaml │ │ │ ├── issue-00721.yaml │ │ │ ├── issue-00791.yaml │ │ │ ├── main.yaml │ │ │ └── pr-23128.yaml │ │ │ ├── provider.yaml │ │ │ └── provider │ │ │ ├── issue-00507.yaml │ │ │ ├── issue-00703.yaml │ │ │ ├── issue-00743.yaml │ │ │ ├── issue-00823.yaml │ │ │ ├── issue-00855.yaml │ │ │ ├── issue-00881.yaml │ │ │ ├── issue-00887.yaml │ │ │ ├── issue-01027.yaml │ │ │ ├── issue-01108.yaml │ │ │ ├── issue-01203.yaml │ │ │ ├── issue-01668.yaml │ │ │ ├── issue-01800.yaml │ │ │ └── main.yaml │ │ ├── bigip_profile_analytics │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01529.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_client_ssl │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── 2048b-dsa-example-cert.pem │ │ │ ├── 2048b-dsa-example-keypair.pem │ │ │ ├── cert1.crt │ │ │ ├── cert1.key │ │ │ ├── cert2.crt │ │ │ ├── cert2.key │ │ │ ├── cert3.dsa.crt │ │ │ ├── cert3.dsa.key │ │ │ ├── cert4.ecdsa.crt │ │ │ ├── cert4.ecdsa.key │ │ │ ├── chain1.crt │ │ │ ├── chain2.crt │ │ │ ├── ocsp.example.com.cert.pem │ │ │ ├── ocsp.example.com.key.pem │ │ │ └── ocsp.intermediate.crt │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00398.yaml │ │ │ ├── issue-00418.yaml │ │ │ ├── issue-00524.yaml │ │ │ ├── issue-00532.yaml │ │ │ ├── issue-00739.yaml │ │ │ ├── issue-00846.yaml │ │ │ ├── issue-00905.yaml │ │ │ ├── issue-00916.yaml │ │ │ ├── issue-01201.yaml │ │ │ ├── issue-01250.yaml │ │ │ ├── issue-01422.yaml │ │ │ ├── issue-01483.yaml │ │ │ ├── issue-01529.yaml │ │ │ ├── issue-01532.yaml │ │ │ ├── issue-01721.yaml │ │ │ ├── main.yaml │ │ │ └── test-cert-key-chain.yaml │ │ └── vars │ │ │ ├── issue-00398.yaml │ │ │ ├── issue-00418.yaml │ │ │ ├── issue-00524.yaml │ │ │ ├── issue-00532.yaml │ │ │ ├── issue-00846.yaml │ │ │ ├── issue-00905.yaml │ │ │ └── issue-01422.yaml │ │ ├── bigip_profile_dns │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00763.yaml │ │ │ ├── issue-00788.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_fastl4 │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01529.yaml │ │ │ ├── issue-01532.yaml │ │ │ ├── issue-01657.yaml │ │ │ ├── issue-01912.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_ftp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_http │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01022.yaml │ │ │ ├── issue-01310.yaml │ │ │ ├── issue-01529.yaml │ │ │ ├── issue-02113.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── issue-01022.yaml │ │ │ └── issue-01310.yaml │ │ ├── bigip_profile_http2 │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01529.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_http_compression │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01529.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_oneconnect │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01529.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_persistence_cookie │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ └── main.yaml │ │ │ ├── provider.yaml │ │ │ └── provider │ │ │ ├── issue-01164.yaml │ │ │ ├── issue-01529.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_persistence_src_addr │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01529.yaml │ │ │ ├── issue-01551.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_persistence_universal │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── basic-iapp.tmpl │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── templates │ │ │ ├── irule-01.tcl │ │ │ └── irule-02.tcl │ │ ├── bigip_profile_server_ssl │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── cert1.crt │ │ │ ├── cert1.key │ │ │ └── chain1.crt │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01433.yaml │ │ │ ├── issue-01529.yaml │ │ │ ├── issue-01609.yaml │ │ │ ├── issue-01711.yaml │ │ │ ├── issue-02040.yaml │ │ │ ├── issue-02435.yaml │ │ │ ├── issue-2458.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_sip │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_profile_tcp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00832.yaml │ │ │ ├── issue-01309.yaml │ │ │ ├── issue-01532.yaml │ │ │ ├── issue-01617.yaml │ │ │ ├── issue-01897.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── issue-00832.yaml │ │ │ └── issue-01309.yaml │ │ ├── bigip_profile_udp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01476.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_provision │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00449.yaml │ │ │ ├── issue-00663.yaml │ │ │ ├── issue-00669.yaml │ │ │ ├── issue-01307.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_provision_async │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_qkview │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── issue-2216.json │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02216.yaml │ │ │ ├── main.yaml │ │ │ └── setup.yaml │ │ ├── bigip_remote_role │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_remote_syslog │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00405.yaml │ │ │ ├── issue-00429.yaml │ │ │ ├── issue-00996.yaml │ │ │ └── main.yaml │ │ └── vars │ │ │ ├── issue-00429.yaml │ │ │ └── issue-00996.yaml │ │ ├── bigip_remote_user │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_routedomain │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00051.yaml │ │ │ ├── issue-00379.yaml │ │ │ ├── issue-00662.yaml │ │ │ ├── issue-00775.yaml │ │ │ ├── issue-01036.yaml │ │ │ ├── issue-01064.yaml │ │ │ ├── issue-02010.yaml │ │ │ ├── main.yaml │ │ │ ├── provider.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── issue-00379.yaml │ │ │ ├── issue-01036.yaml │ │ │ ├── issue-01064.yaml │ │ │ └── issue-02010.yaml │ │ ├── bigip_selfip │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ │ ├── issue-00229.yaml │ │ │ │ ├── issue-00315.yaml │ │ │ │ ├── issue-00365.yaml │ │ │ │ ├── issue-00401.yaml │ │ │ │ ├── issue-00420.yaml │ │ │ │ ├── issue-00536.yaml │ │ │ │ ├── issue-00753.yaml │ │ │ │ ├── issue-01038.yaml │ │ │ │ ├── main.yaml │ │ │ │ ├── route-domain.yaml │ │ │ │ ├── setup-main.yaml │ │ │ │ ├── setup-route-domain.yaml │ │ │ │ └── teardown-route-domain.yaml │ │ │ ├── provider.yaml │ │ │ └── provider │ │ │ │ ├── issue-00229.yaml │ │ │ │ ├── issue-00315.yaml │ │ │ │ ├── issue-00365.yaml │ │ │ │ ├── issue-00401.yaml │ │ │ │ ├── issue-00420.yaml │ │ │ │ ├── issue-00536.yaml │ │ │ │ ├── issue-01038.yaml │ │ │ │ ├── issue-01527.yaml │ │ │ │ ├── main.yaml │ │ │ │ ├── route-domain.yaml │ │ │ │ ├── setup-main.yaml │ │ │ │ ├── setup-route-domain.yaml │ │ │ │ └── teardown-route-domain.yaml │ │ └── vars │ │ │ ├── issue-00315.yaml │ │ │ ├── issue-00420.yaml │ │ │ └── issue-01527.yaml │ │ ├── bigip_service_policy │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_smtp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_snat_pool │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01284.yaml │ │ │ ├── issue-01428.yaml │ │ │ ├── issue-01429.yaml │ │ │ └── main.yaml │ │ └── vars │ │ │ ├── issue-01284.yaml │ │ │ ├── issue-01428.yaml │ │ │ └── issue-01429.yaml │ │ ├── bigip_snat_translation │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01428.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-01428.yaml │ │ ├── bigip_snmp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00552.yaml │ │ │ ├── issue-00626.yaml │ │ │ └── main.yaml │ │ ├── bigip_snmp_community │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00659.yaml │ │ │ ├── issue-2424.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── teardown.yaml │ │ │ ├── v1-tasks.yaml │ │ │ ├── v2-tasks.yaml │ │ │ └── v3-tasks.yaml │ │ ├── bigip_snmp_trap │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── infraano-00086.yaml │ │ │ ├── main.yaml │ │ │ ├── post-v12.yaml │ │ │ └── v12.0.0.yaml │ │ ├── bigip_software_image │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── BIGIP-13.0.0.0.0.1645.iso.example │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01379.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── sr-1-8581427611.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_software_install │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── BIGIP-13.0.0.0.0.1645.iso.example │ │ │ └── Hotfix-BIGIP-13.0.0.1.0.1668-HF1.iso.example │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00925.yaml │ │ │ ├── issue-01379.yaml │ │ │ ├── issue-01680.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── sr-1-8372348301.yaml │ │ │ ├── teardown.yaml │ │ │ └── vcmp.yaml │ │ └── vars │ │ │ ├── issue-00925.yaml │ │ │ └── sr-1-8372348301.yaml │ │ ├── bigip_software_update │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_ssl_certificate │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── cert1.crt │ │ │ ├── cert1.key │ │ │ ├── cert2.crt │ │ │ ├── cert2.key │ │ │ ├── chain1.crt │ │ │ ├── chain2.crt │ │ │ ├── issue.00399.local.crt │ │ │ ├── issue.00399.local.key │ │ │ ├── issue.00498.issuer.crt │ │ │ └── issue.00498.local.crt │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00222.yaml │ │ │ ├── issue-00399.yaml │ │ │ ├── issue-00498.yaml │ │ │ ├── issue-02306.yaml │ │ │ ├── main.yaml │ │ │ └── make-cert │ │ │ │ ├── create-intermediate-pair.yaml │ │ │ │ ├── create-ocsp-pair.yaml │ │ │ │ ├── create-root-pair.yaml │ │ │ │ ├── main.yaml │ │ │ │ ├── setup.yaml │ │ │ │ └── sign-server-and-client-certs.yaml │ │ └── templates │ │ │ ├── intermediate-ca-openssl.cnf │ │ │ └── root-ca-openssl.cnf │ │ ├── bigip_ssl_csr │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ └── setup.yaml │ │ ├── bigip_ssl_key │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── cert1.key │ │ │ └── cert2.key │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02306.yaml │ │ │ └── main.yaml │ │ ├── bigip_ssl_key_cert │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ ├── cert.pem │ │ │ ├── cert3.pem │ │ │ ├── key.pem │ │ │ ├── key3.pem │ │ │ ├── test.cert │ │ │ └── test.key │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02306.yaml │ │ │ ├── issue-2346.yaml │ │ │ ├── main.yaml │ │ │ └── sr-fips.yaml │ │ ├── bigip_ssl_ocsp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_static_route │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── fmfa-00676.yaml │ │ │ ├── issue-00104.yaml │ │ │ ├── issue-00545.yaml │ │ │ ├── issue-00618.yaml │ │ │ ├── issue-00752.yaml │ │ │ ├── issue-00865.yaml │ │ │ ├── issue-00945.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── fmfa-00676.yaml │ │ │ └── issue-00865.yaml │ │ ├── bigip_sys_daemon_log_tmm │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_sys_db │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_sys_global │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_timer_policy │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_traffic_selector │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01034.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ └── issue-01034.yaml │ │ ├── bigip_trunk │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00783.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_tunnel │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_ucs │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── .gitkeep │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-2227.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigip_ucs_fetch │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-01502.yaml │ │ │ └── main.yaml │ │ ├── bigip_user │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00113.yaml │ │ │ ├── issue-00276.yaml │ │ │ ├── issue-00310.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ ├── teardown.yaml │ │ │ └── test-post-version-12-specific.yaml │ │ ├── bigip_vcmp_guest │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── files │ │ │ └── BIGIP-13.0.0.0.0.1645.iso.example │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-00457.yaml │ │ │ ├── issue-00592.yaml │ │ │ ├── issue-00798.yaml │ │ │ ├── issue-00802.yaml │ │ │ ├── issue-01276.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── issue-00457.yaml │ │ │ ├── issue-00592.yaml │ │ │ ├── issue-00798.yaml │ │ │ ├── issue-00802.yaml │ │ │ └── issue-01276.yaml │ │ ├── bigip_virtual_address │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00062.yaml │ │ │ ├── issue-00654.yaml │ │ │ ├── issue-00725.yaml │ │ │ ├── issue-00725 │ │ │ ├── v1.yaml │ │ │ └── v2.yaml │ │ │ ├── issue-00797.yaml │ │ │ ├── issue-01436.yaml │ │ │ └── main.yaml │ │ ├── bigip_virtual_server │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ │ ├── infraano-00653.yaml │ │ │ │ ├── issue-00032.yaml │ │ │ │ ├── issue-00038.yaml │ │ │ │ ├── issue-00044.yaml │ │ │ │ ├── issue-00053.yaml │ │ │ │ ├── issue-00057.yaml │ │ │ │ ├── issue-00059.yaml │ │ │ │ ├── issue-00093.yaml │ │ │ │ ├── issue-00101.yaml │ │ │ │ ├── issue-00205.yaml │ │ │ │ ├── issue-00385.yaml │ │ │ │ ├── issue-00402.yaml │ │ │ │ ├── issue-00403.yaml │ │ │ │ ├── issue-00408.yaml │ │ │ │ ├── issue-00419.yaml │ │ │ │ ├── issue-00454.yaml │ │ │ │ ├── issue-00456.yaml │ │ │ │ ├── issue-00460.yaml │ │ │ │ ├── issue-00483.yaml │ │ │ │ ├── issue-00491.yaml │ │ │ │ ├── issue-00511.yaml │ │ │ │ ├── issue-00515.yaml │ │ │ │ ├── issue-00518.yaml │ │ │ │ ├── issue-00519.yaml │ │ │ │ ├── issue-00520.yaml │ │ │ │ ├── issue-00521.yaml │ │ │ │ ├── issue-00523.yaml │ │ │ │ ├── issue-00554.yaml │ │ │ │ ├── issue-00569.yaml │ │ │ │ ├── issue-00579.yaml │ │ │ │ ├── issue-00675.yaml │ │ │ │ ├── issue-00805.yaml │ │ │ │ ├── issue-02103.yaml │ │ │ │ ├── issue-02104.yaml │ │ │ │ ├── main.yaml │ │ │ │ ├── pr-03158.yaml │ │ │ │ ├── setup.yaml │ │ │ │ ├── teardown.yaml │ │ │ │ ├── type-dhcp.yaml │ │ │ │ ├── type-forwarding-ip.yaml │ │ │ │ ├── type-forwarding-l2.yaml │ │ │ │ ├── type-internal.yaml │ │ │ │ ├── type-message-routing.yaml │ │ │ │ ├── type-performance-http.yaml │ │ │ │ ├── type-performance-l4.yaml │ │ │ │ ├── type-reject.yaml │ │ │ │ ├── type-standard.yaml │ │ │ │ └── type-stateless.yaml │ │ │ ├── provider.yaml │ │ │ └── provider │ │ │ │ ├── issue-00650.yaml │ │ │ │ ├── issue-00751.yaml │ │ │ │ ├── issue-00882.yaml │ │ │ │ ├── issue-00957.yaml │ │ │ │ ├── issue-00959.yaml │ │ │ │ ├── issue-00961.yaml │ │ │ │ ├── issue-00966.yaml │ │ │ │ ├── issue-01040.yaml │ │ │ │ ├── issue-01075.yaml │ │ │ │ ├── issue-01078.yaml │ │ │ │ ├── issue-01082.yaml │ │ │ │ ├── issue-01109.yaml │ │ │ │ ├── issue-01163.yaml │ │ │ │ ├── issue-01170.yaml │ │ │ │ ├── issue-01175.yaml │ │ │ │ ├── issue-01187.yaml │ │ │ │ ├── issue-01295.yaml │ │ │ │ ├── issue-01403.yaml │ │ │ │ ├── issue-01430.yaml │ │ │ │ ├── issue-01445.yaml │ │ │ │ ├── issue-01456.yaml │ │ │ │ ├── issue-01470.yaml │ │ │ │ ├── issue-01519.yaml │ │ │ │ ├── issue-01610.yaml │ │ │ │ ├── issue-01813.yaml │ │ │ │ ├── issue-02434.yaml │ │ │ │ ├── main.yaml │ │ │ │ └── sr-00458196.yaml │ │ └── vars │ │ │ ├── issue-00053.yaml │ │ │ ├── issue-00057.yaml │ │ │ ├── issue-00093.yaml │ │ │ ├── issue-00205.yaml │ │ │ ├── issue-00454.yaml │ │ │ ├── issue-00483.yaml │ │ │ ├── issue-00491.yaml │ │ │ ├── issue-00515.yaml │ │ │ ├── issue-00519.yaml │ │ │ ├── issue-00702.yaml │ │ │ ├── issue-00751.yaml │ │ │ ├── issue-00957.yaml │ │ │ ├── issue-01163.yaml │ │ │ ├── issue-01187.yaml │ │ │ ├── issue-01445.yaml │ │ │ └── pr-03158.yaml │ │ ├── bigip_vlan │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-00304.yaml │ │ │ ├── issue-00371.yaml │ │ │ ├── issue-00372.yaml │ │ │ ├── issue-00373.yaml │ │ │ ├── issue-00433.yaml │ │ │ ├── issue-00800.yaml │ │ │ ├── issue-01554.yaml │ │ │ ├── main.yaml │ │ │ └── setup.yaml │ │ ├── bigip_wait │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ ├── issue-01437.yaml │ │ │ ├── issue_vcmp_wait.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ │ ├── provider-cli.yaml │ │ │ ├── provider-cli │ │ │ ├── issue-00842.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ │ ├── provider-rest.yaml │ │ │ └── provider-rest │ │ │ ├── issue-01437.yaml │ │ │ ├── issue_vcmp_wait.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_application_fasthttp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_application_fastl4_tcp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_application_fastl4_udp │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_application_http │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── environment.yaml │ │ │ ├── environment │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ │ ├── provider-rest.yaml │ │ │ └── provider-rest │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_application_https_offload │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_application_https_waf │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_device_discovery │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── issue-01241.yaml │ │ │ ├── issue-01242.yaml │ │ │ ├── issue-01243.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── vars │ │ │ ├── issue-01241.yaml │ │ │ ├── issue-01242.yaml │ │ │ └── issue-01243.yaml │ │ ├── bigiq_device_info │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── fmfa-347.yaml │ │ │ ├── issue-00921.yaml │ │ │ ├── issue-00922.yaml │ │ │ ├── issue-00923.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_regkey_license │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── issue-02013.yaml │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_regkey_license_assignment │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup-managed-device.yaml │ │ │ ├── setup.yaml │ │ │ ├── teardown-managed-device.yaml │ │ │ └── teardown.yaml │ │ ├── bigiq_regkey_pool │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yaml │ │ ├── bigiq_utility_license │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yaml │ │ │ ├── setup.yaml │ │ │ └── teardown.yaml │ │ └── bigiq_utility_license_assignment │ │ ├── defaults │ │ └── main.yaml │ │ ├── meta │ │ └── main.yml │ │ └── tasks │ │ ├── main.yaml │ │ ├── setup-managed-device.yaml │ │ ├── setup.yaml │ │ ├── teardown-managed-device.yaml │ │ └── teardown.yaml └── sanity │ ├── assigning-arg-spec-reference.sh │ ├── correct-defaultdict-import.sh │ ├── correct-iteritems-import.sh │ ├── incorrect-client-assignment-to-parameters.sh │ ├── incorrect-client-usage-for-module-deprecate.sh │ ├── incorrect-comparisons.sh │ ├── integration-test-idempotent-names.sh │ ├── miscased-true.sh │ ├── params-missing-keyword-arg.sh │ ├── q-debugging-exists.sh │ ├── unnecessary-default-none.sh │ ├── unnecessary-quotes-around-common.sh │ └── unnecessary-required-false.sh ├── tmp ├── .gitkeep ├── ansible.junit │ └── .gitkeep └── licenses │ └── .gitkeep └── tox.ini /.ansible-lint-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.ansible-lint-ignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitallowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.gitallowed -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/README.rst -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/ansible_collections/f5networks/f5_modules/CHANGELOG.rst -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/ansible_collections/f5networks/f5_modules/README.md -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/changelogs/fragments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/ansible_collections/f5networks/f5_modules/galaxy.yml -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/ansible_collections/f5networks/f5_modules/meta/runtime.yml -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/plugins/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/plugins/filter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/plugins/lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/plugins/module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/ansible_collections/f5networks/f5_modules/requirements.txt -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/config.yml: -------------------------------------------------------------------------------- 1 | modules: 2 | python_requires: '>=3.8' 3 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/unit/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/unit/mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/unit/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/unit/modules/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/unit/modules/network/f5/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible_collections/f5networks/f5_modules/tests/unit/modules/network/f5/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devtools/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/docker-compose.yaml -------------------------------------------------------------------------------- /devtools/scripts/merge-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/scripts/merge-upstream.sh -------------------------------------------------------------------------------- /devtools/secrets/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/secrets/gitconfig -------------------------------------------------------------------------------- /devtools/stubs/collection_galaxy_f5_modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/stubs/collection_galaxy_f5_modules.yml -------------------------------------------------------------------------------- /devtools/stubs/library_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/stubs/library_module.py -------------------------------------------------------------------------------- /devtools/stubs/playbooks_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/stubs/playbooks_module.yaml -------------------------------------------------------------------------------- /devtools/stubs/test-integration-issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/stubs/test-integration-issue.yaml -------------------------------------------------------------------------------- /devtools/stubs/test_integration_targets_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/stubs/test_integration_targets_main.yaml -------------------------------------------------------------------------------- /devtools/stubs/test_meta_main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /devtools/stubs/tests_unit_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/stubs/tests_unit_module.py -------------------------------------------------------------------------------- /devtools/stubs/version_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/devtools/stubs/version_stub.py -------------------------------------------------------------------------------- /examples/0000-getting-started/inventory/hosts: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /examples/0000-getting-started/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0000-getting-started/playbook.yaml -------------------------------------------------------------------------------- /examples/0000-getting-started/undo-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0000-getting-started/undo-playbook.yaml -------------------------------------------------------------------------------- /examples/0001-lab-reset-and-pairing/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0001-lab-reset-and-pairing/README.rst -------------------------------------------------------------------------------- /examples/0001-lab-reset-and-pairing/v11-1-reset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0001-lab-reset-and-pairing/v11-1-reset.yaml -------------------------------------------------------------------------------- /examples/0001-lab-reset-and-pairing/v11-2-reset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0001-lab-reset-and-pairing/v11-2-reset.yaml -------------------------------------------------------------------------------- /examples/0001-lab-reset-and-pairing/v13-pair-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0001-lab-reset-and-pairing/v13-pair-device.yaml -------------------------------------------------------------------------------- /examples/0002-license-bigip/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0002-license-bigip/README.rst -------------------------------------------------------------------------------- /examples/0002-license-bigip/group_vars/f5-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0002-license-bigip/group_vars/f5-test.yaml -------------------------------------------------------------------------------- /examples/0002-license-bigip/inventory/hosts: -------------------------------------------------------------------------------- 1 | [f5-test] 2 | big-ip01.internal 3 | -------------------------------------------------------------------------------- /examples/0002-license-bigip/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0002-license-bigip/playbook.yaml -------------------------------------------------------------------------------- /examples/0003-wait-for-bigip/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0003-wait-for-bigip/README.rst -------------------------------------------------------------------------------- /examples/0003-wait-for-bigip/group_vars/f5-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0003-wait-for-bigip/group_vars/f5-test.yaml -------------------------------------------------------------------------------- /examples/0003-wait-for-bigip/inventory/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0003-wait-for-bigip/inventory/hosts -------------------------------------------------------------------------------- /examples/0003-wait-for-bigip/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0003-wait-for-bigip/playbook.yaml -------------------------------------------------------------------------------- /examples/0005-ha-pair-setup/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0005-ha-pair-setup/README.rst -------------------------------------------------------------------------------- /examples/0005-ha-pair-setup/group_vars/f5-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0005-ha-pair-setup/group_vars/f5-test.yaml -------------------------------------------------------------------------------- /examples/0005-ha-pair-setup/inventory/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0005-ha-pair-setup/inventory/hosts -------------------------------------------------------------------------------- /examples/0005-ha-pair-setup/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0005-ha-pair-setup/playbook.yaml -------------------------------------------------------------------------------- /examples/0005-ha-pair-setup/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0005-ha-pair-setup/validate.yaml -------------------------------------------------------------------------------- /examples/0006-using-rest-api-directly/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0006-using-rest-api-directly/README.rst -------------------------------------------------------------------------------- /examples/0006-using-rest-api-directly/host_vars/bigip01.internal.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | ansible_host: 1.2.3.4 4 | -------------------------------------------------------------------------------- /examples/0006-using-rest-api-directly/inventory/hosts: -------------------------------------------------------------------------------- 1 | [f5-test] 2 | bigip01.internal 3 | -------------------------------------------------------------------------------- /examples/0006-using-rest-api-directly/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0006-using-rest-api-directly/playbook.yaml -------------------------------------------------------------------------------- /examples/0006-using-rest-api-directly/undo-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0006-using-rest-api-directly/undo-playbook.yaml -------------------------------------------------------------------------------- /examples/0007-asm-irule-data-group-ltm-policy-virtual-server/inventory/hosts: -------------------------------------------------------------------------------- 1 | f5 ansible_host=1.2.3.4 2 | -------------------------------------------------------------------------------- /examples/0008-bigiq-per-app-http-application/inventory/hosts: -------------------------------------------------------------------------------- 1 | [f5-test] 2 | big-iq01.internal 3 | -------------------------------------------------------------------------------- /examples/0008-bigiq-per-app-http-application/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/0008-bigiq-per-app-http-application/playbook.yaml -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/hosts.ini.example: -------------------------------------------------------------------------------- 1 | [f5-test] 2 | localhost 3 | -------------------------------------------------------------------------------- /examples/lots-of-nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/lots-of-nodes.yaml -------------------------------------------------------------------------------- /examples/pool-from-port-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/pool-from-port-range.yaml -------------------------------------------------------------------------------- /examples/pool-member-enable-disable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/pool-member-enable-disable.yaml -------------------------------------------------------------------------------- /examples/with-items-omit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/examples/with-items-omit.yaml -------------------------------------------------------------------------------- /fragments_archive/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1237-fix-auth-not-authorized.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1237-fix-auth-not-authorized.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1392-fix-save-when.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1392-fix-save-when.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1405-add-perist-cookie-option.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1405-add-perist-cookie-option.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1440-add-true-name-support.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1440-add-true-name-support.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1500-add-phase1-lifetime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1500-add-phase1-lifetime.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1527-add-fw_enf-support.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1527-add-fw_enf-support.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1563-ipv6-bigip-device-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1563-ipv6-bigip-device-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1575-new-ftp-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1575-new-ftp-monitor.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1576-new-icmp-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1576-new-icmp-monitor.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1580-add-self-allow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1580-add-self-allow.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1580-new-smtp-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1580-new-smtp-monitor.yaml -------------------------------------------------------------------------------- /fragments_archive/1.1.0/1601-remove-deprecations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.1.0/1601-remove-deprecations.yaml -------------------------------------------------------------------------------- /fragments_archive/1.10.0/1978-fix-asm-query-filters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.10.0/1978-fix-asm-query-filters.yaml -------------------------------------------------------------------------------- /fragments_archive/1.10.0/2006-fix-apm-acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.10.0/2006-fix-apm-acl.yaml -------------------------------------------------------------------------------- /fragments_archive/1.10.0/2017-fix-bigip-device-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.10.0/2017-fix-bigip-device-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.10.0/2054-fix-bigip-device-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.10.0/2054-fix-bigip-device-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.11.0/1912-add-syn_cookie_enable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.11.0/1912-add-syn_cookie_enable.yaml -------------------------------------------------------------------------------- /fragments_archive/1.11.0/1992-fix-software-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.11.0/1992-fix-software-install.yaml -------------------------------------------------------------------------------- /fragments_archive/1.11.0/fix-snat-pool-device-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.11.0/fix-snat-pool-device-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.11.1/doc-fix-datagroups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.11.1/doc-fix-datagroups.yaml -------------------------------------------------------------------------------- /fragments_archive/1.11.1/fix-afm-rd-attach.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.11.1/fix-afm-rd-attach.yaml -------------------------------------------------------------------------------- /fragments_archive/1.11.1/fix-asm-api-filters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.11.1/fix-asm-api-filters.yaml -------------------------------------------------------------------------------- /fragments_archive/1.11.1/fix-bigip-device-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.11.1/fix-bigip-device-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.11.1/vs-sip-idempotent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.11.1/vs-sip-idempotent.yaml -------------------------------------------------------------------------------- /fragments_archive/1.12.0/1981-fix-ucs-instability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.12.0/1981-fix-ucs-instability.yaml -------------------------------------------------------------------------------- /fragments_archive/1.12.0/2048-fix-conditon-removal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.12.0/2048-fix-conditon-removal.yaml -------------------------------------------------------------------------------- /fragments_archive/1.12.0/2083-fix-bigip-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.12.0/2083-fix-bigip-policy.yaml -------------------------------------------------------------------------------- /fragments_archive/1.12.0/bigip-v1fix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.12.0/bigip-v1fix.yaml -------------------------------------------------------------------------------- /fragments_archive/1.13.0/2001-ldap-fixes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.13.0/2001-ldap-fixes.yaml -------------------------------------------------------------------------------- /fragments_archive/1.13.0/2104-add-auto-last-hop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.13.0/2104-add-auto-last-hop.yaml -------------------------------------------------------------------------------- /fragments_archive/1.13.0/2134-ucs-src-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.13.0/2134-ucs-src-report.yaml -------------------------------------------------------------------------------- /fragments_archive/1.14.0/2143-fix-partition-filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.14.0/2143-fix-partition-filter.yaml -------------------------------------------------------------------------------- /fragments_archive/1.14.0/no_log_key_and_cert_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.14.0/no_log_key_and_cert_content.yaml -------------------------------------------------------------------------------- /fragments_archive/1.15.0/add-meta-choice-packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.15.0/add-meta-choice-packages.yaml -------------------------------------------------------------------------------- /fragments_archive/1.15.0/add_content_type_include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.15.0/add_content_type_include.yaml -------------------------------------------------------------------------------- /fragments_archive/1.15.0/bigip-device-info-ucs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.15.0/bigip-device-info-ucs.yaml -------------------------------------------------------------------------------- /fragments_archive/1.15.0/bugfix-bigip-device-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.15.0/bugfix-bigip-device-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.15.0/bugfix-gtm-wide-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.15.0/bugfix-gtm-wide-ip.yaml -------------------------------------------------------------------------------- /fragments_archive/1.15.0/bugfix-multiple-add-on-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.15.0/bugfix-multiple-add-on-keys.yaml -------------------------------------------------------------------------------- /fragments_archive/1.16.0/2013-add-addon-bigiq-license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.16.0/2013-add-addon-bigiq-license.yaml -------------------------------------------------------------------------------- /fragments_archive/1.16.0/2177-add-ucs-date.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.16.0/2177-add-ucs-date.yaml -------------------------------------------------------------------------------- /fragments_archive/1.16.0/bugfix-bigip-command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.16.0/bugfix-bigip-command.yaml -------------------------------------------------------------------------------- /fragments_archive/1.17.0/fix-autopopulate-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.17.0/fix-autopopulate-node.yaml -------------------------------------------------------------------------------- /fragments_archive/1.19.0/fix-ldap-monitor-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.19.0/fix-ldap-monitor-password.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1112-addon-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1112-addon-keys.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1483-add-ciphergroup-param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1483-add-ciphergroup-param.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1497-add-mgmt-routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1497-add-mgmt-routes.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1521-add-forward-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1521-add-forward-node.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1587-bugfix-data-grp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1587-bugfix-data-grp.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1607-bugfix-ipv6-datagrp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1607-bugfix-ipv6-datagrp.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1610-add-bypass-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1610-add-bypass-checks.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1616-add-multiple-vectors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1616-add-multiple-vectors.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1618-bugfix-imish-dupe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1618-bugfix-imish-dupe.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1628-add-dos-vectors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1628-add-dos-vectors.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1630-add-info-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1630-add-info-policies.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1642-bugfix-truenames.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1642-bugfix-truenames.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1662-add-aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1662-add-aliases.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1681-new-radius-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1681-new-radius-auth.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1690-bugfix-boolean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1690-bugfix-boolean.yaml -------------------------------------------------------------------------------- /fragments_archive/1.2.0/1691-bugfix-list-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.2.0/1691-bugfix-list-type.yaml -------------------------------------------------------------------------------- /fragments_archive/1.20.0/fix-naming-issues-asm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.20.0/fix-naming-issues-asm.yaml -------------------------------------------------------------------------------- /fragments_archive/1.21.0/sr-fix-image-upload-bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.21.0/sr-fix-image-upload-bug.yaml -------------------------------------------------------------------------------- /fragments_archive/1.22.0/fix-route-domain-in-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.22.0/fix-route-domain-in-ip.yaml -------------------------------------------------------------------------------- /fragments_archive/1.25.0/new-bigip-async-module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.25.0/new-bigip-async-module.yaml -------------------------------------------------------------------------------- /fragments_archive/1.26.0/true-names-bigfixes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.26.0/true-names-bigfixes.yaml -------------------------------------------------------------------------------- /fragments_archive/1.28.0/fix-gtm-monitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.28.0/fix-gtm-monitors.yaml -------------------------------------------------------------------------------- /fragments_archive/1.28.0/fix-gtm-topo-region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.28.0/fix-gtm-topo-region.yaml -------------------------------------------------------------------------------- /fragments_archive/1.29.0/issue_2393.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.29.0/issue_2393.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1182-add-auth-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1182-add-auth-source.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1275-new-ssl-csr-module.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | minor_changes: 3 | - New bigip_ssl_csr_module to create CSR files -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1632-new-monitor-oracle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1632-new-monitor-oracle.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1693-new-monitor_mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1693-new-monitor_mysql.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1696-add-pool-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1696-add-pool-order.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1706-add-set-variable-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1706-add-set-variable-rule.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1715-add-remove-changes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1715-add-remove-changes.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1719-device-auth-changes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1719-device-auth-changes.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1724-added-options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1724-added-options.yaml -------------------------------------------------------------------------------- /fragments_archive/1.3.0/1726-multiple-additions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.3.0/1726-multiple-additions.yaml -------------------------------------------------------------------------------- /fragments_archive/1.30.0/bigip-ucs-restore-fix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.30.0/bigip-ucs-restore-fix.yaml -------------------------------------------------------------------------------- /fragments_archive/1.31.0/issue_2419_2421.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.31.0/issue_2419_2421.yaml -------------------------------------------------------------------------------- /fragments_archive/1.32.0/imish_route_domain_bugfix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.32.0/imish_route_domain_bugfix.yml -------------------------------------------------------------------------------- /fragments_archive/1.32.0/issue-2429.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.32.0/issue-2429.yaml -------------------------------------------------------------------------------- /fragments_archive/1.33.0/external_monitor_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.33.0/external_monitor_issue.yml -------------------------------------------------------------------------------- /fragments_archive/1.34.0/issue_2424.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.34.0/issue_2424.yaml -------------------------------------------------------------------------------- /fragments_archive/1.34.0/issue_2434.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.34.0/issue_2434.yaml -------------------------------------------------------------------------------- /fragments_archive/1.34.0/issue_2435.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.34.0/issue_2435.yaml -------------------------------------------------------------------------------- /fragments_archive/1.35.0/2458-profile-server-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.35.0/2458-profile-server-ssl.yaml -------------------------------------------------------------------------------- /fragments_archive/1.37.1/virtual-server-crash.yaml: -------------------------------------------------------------------------------- 1 | bugfixes: 2 | - bigip_virtual_server fix module crash issue 3 | -------------------------------------------------------------------------------- /fragments_archive/1.4.0/1717-add-rpm-retention.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.4.0/1717-add-rpm-retention.yaml -------------------------------------------------------------------------------- /fragments_archive/1.4.0/1730-add-apply-asm-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.4.0/1730-add-apply-asm-policy.yaml -------------------------------------------------------------------------------- /fragments_archive/1.4.0/1749-parameter-changes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.4.0/1749-parameter-changes.yaml -------------------------------------------------------------------------------- /fragments_archive/1.5.0/1624-bugfix-bigiq-control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.5.0/1624-bugfix-bigiq-control.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1217-new-bigp-ssl-key-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1217-new-bigp-ssl-key-cert.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1710-add-bigip-device-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1710-add-bigip-device-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1728-bugfix-command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1728-bugfix-command.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1782-add-reuse-objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1782-add-reuse-objects.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1784-add-apm-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1784-add-apm-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1816-license-renew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1816-license-renew.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1832-remove-deprecations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1832-remove-deprecations.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1834-atc-bigip-device-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1834-atc-bigip-device-info.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1855-add-api-protect-apm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1855-add-api-protect-apm.yaml -------------------------------------------------------------------------------- /fragments_archive/1.6.0/1884-add-teem-phone-home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.6.0/1884-add-teem-phone-home.yaml -------------------------------------------------------------------------------- /fragments_archive/1.7.0/1853-fix-firewall-address-list-error.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | bugfixes: 3 | - Fix AFM firewall address list error -------------------------------------------------------------------------------- /fragments_archive/1.7.0/1878-fix-parameter-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.7.0/1878-fix-parameter-type.yaml -------------------------------------------------------------------------------- /fragments_archive/1.7.0/1903-fix-mgmt-route-not-idempotent.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | bugfixes: 3 | - Fix bigip_management_route module not idempotent -------------------------------------------------------------------------------- /fragments_archive/1.7.0/1923-fix-vs-gtm-dependency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.7.0/1923-fix-vs-gtm-dependency.yaml -------------------------------------------------------------------------------- /fragments_archive/1.7.0/1934-fix-iteration-bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.7.0/1934-fix-iteration-bug.yaml -------------------------------------------------------------------------------- /fragments_archive/1.8.0/1968-remove-deprecations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.8.0/1968-remove-deprecations.yaml -------------------------------------------------------------------------------- /fragments_archive/1.9.0/1970-add-support-checkmode-bigipconfig.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | bugfixes: 3 | - Added Fix for bigip_config check mode issue 4 | -------------------------------------------------------------------------------- /fragments_archive/1.9.0/SR-bigip-device-license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.9.0/SR-bigip-device-license.yaml -------------------------------------------------------------------------------- /fragments_archive/1.9.0/deprecate-python-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.9.0/deprecate-python-versions.yaml -------------------------------------------------------------------------------- /fragments_archive/1.9.1/1964-fix-imish-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.9.1/1964-fix-imish-config.yaml -------------------------------------------------------------------------------- /fragments_archive/1.9.1/1965-fix-bigip-interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.9.1/1965-fix-bigip-interface.yaml -------------------------------------------------------------------------------- /fragments_archive/1.9.1/2015-v16-test-fixes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.9.1/2015-v16-test-fixes.yaml -------------------------------------------------------------------------------- /fragments_archive/1.9.1/2026-fix-bigiq-provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.9.1/2026-fix-bigiq-provider.yaml -------------------------------------------------------------------------------- /fragments_archive/1.9.1/fix-teem-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/fragments_archive/1.9.1/fix-teem-version.yaml -------------------------------------------------------------------------------- /requirements.action.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/requirements.action.txt -------------------------------------------------------------------------------- /requirements.bare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/requirements.bare.txt -------------------------------------------------------------------------------- /requirements.travis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/requirements.travis.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/requirements.txt -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tasks/__init__.py -------------------------------------------------------------------------------- /tasks/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tasks/collection.py -------------------------------------------------------------------------------- /tasks/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tasks/container.py -------------------------------------------------------------------------------- /tasks/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tasks/ip.py -------------------------------------------------------------------------------- /tasks/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/lib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tasks/lib/common.py -------------------------------------------------------------------------------- /tasks/lib/stubber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tasks/lib/stubber.py -------------------------------------------------------------------------------- /tasks/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tasks/module.py -------------------------------------------------------------------------------- /tasks/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tasks/test.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/ansible.cfg -------------------------------------------------------------------------------- /test/integration/bigip_apm_acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_apm_acl.yaml -------------------------------------------------------------------------------- /test/integration/bigip_apm_network_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_apm_network_access.yaml -------------------------------------------------------------------------------- /test/integration/bigip_apm_policy_fetch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_apm_policy_fetch.yaml -------------------------------------------------------------------------------- /test/integration/bigip_apm_policy_import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_apm_policy_import.yaml -------------------------------------------------------------------------------- /test/integration/bigip_appsvcs_extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_appsvcs_extension.yaml -------------------------------------------------------------------------------- /test/integration/bigip_asm_advanced_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_asm_advanced_settings.yaml -------------------------------------------------------------------------------- /test/integration/bigip_asm_dos_application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_asm_dos_application.yaml -------------------------------------------------------------------------------- /test/integration/bigip_asm_policy_fetch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_asm_policy_fetch.yaml -------------------------------------------------------------------------------- /test/integration/bigip_asm_policy_import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_asm_policy_import.yaml -------------------------------------------------------------------------------- /test/integration/bigip_asm_policy_manage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_asm_policy_manage.yaml -------------------------------------------------------------------------------- /test/integration/bigip_asm_policy_signature_set.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_asm_policy_signature_set.yaml -------------------------------------------------------------------------------- /test/integration/bigip_cgnat_lsn_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_cgnat_lsn_pool.yaml -------------------------------------------------------------------------------- /test/integration/bigip_cli_alias.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_cli_alias.yaml -------------------------------------------------------------------------------- /test/integration/bigip_cli_script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_cli_script.yaml -------------------------------------------------------------------------------- /test/integration/bigip_command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_command.yaml -------------------------------------------------------------------------------- /test/integration/bigip_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_config.yaml -------------------------------------------------------------------------------- /test/integration/bigip_configsync_action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_configsync_action.yaml -------------------------------------------------------------------------------- /test/integration/bigip_data_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_data_group.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_auth.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_auth_ldap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_auth_ldap.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_auth_radius.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_auth_radius.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_auth_radius_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_auth_radius_server.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_certificate.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_connectivity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_connectivity.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_dns.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_group.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_group_member.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_group_member.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_ha_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_ha_group.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_httpd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_httpd.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_info.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_license.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_ntp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_ntp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_sshd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_sshd.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_syslog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_syslog.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_traffic_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_traffic_group.yaml -------------------------------------------------------------------------------- /test/integration/bigip_device_trust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_device_trust.yaml -------------------------------------------------------------------------------- /test/integration/bigip_dns_cache_resolver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_dns_cache_resolver.yaml -------------------------------------------------------------------------------- /test/integration/bigip_dns_nameserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_dns_nameserver.yaml -------------------------------------------------------------------------------- /test/integration/bigip_dns_resolver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_dns_resolver.yaml -------------------------------------------------------------------------------- /test/integration/bigip_dns_zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_dns_zone.yaml -------------------------------------------------------------------------------- /test/integration/bigip_file_copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_file_copy.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_address_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_address_list.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_dos_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_dos_profile.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_dos_vector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_dos_vector.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_global_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_global_rules.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_log_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_log_profile.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_policy.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_port_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_port_list.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_rule.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_rule_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_rule_list.yaml -------------------------------------------------------------------------------- /test/integration/bigip_firewall_schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_firewall_schedule.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_datacenter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_datacenter.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_dns_listener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_dns_listener.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_global.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_monitor_bigip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_monitor_bigip.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_monitor_external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_monitor_external.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_monitor_firepass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_monitor_firepass.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_monitor_http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_monitor_http.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_monitor_https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_monitor_https.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_monitor_tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_monitor_tcp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_monitor_tcp_half_open.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_monitor_tcp_half_open.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_pool.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_pool_member.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_pool_member.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_server.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_topology_record.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_topology_record.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_topology_region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_topology_region.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_virtual_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_virtual_server.yaml -------------------------------------------------------------------------------- /test/integration/bigip_gtm_wide_ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_gtm_wide_ip.yaml -------------------------------------------------------------------------------- /test/integration/bigip_hostname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_hostname.yaml -------------------------------------------------------------------------------- /test/integration/bigip_iapp_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_iapp_service.yaml -------------------------------------------------------------------------------- /test/integration/bigip_iapp_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_iapp_template.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ike_peer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ike_peer.yaml -------------------------------------------------------------------------------- /test/integration/bigip_imish_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_imish_config.yaml -------------------------------------------------------------------------------- /test/integration/bigip_interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_interface.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ipsec_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ipsec_policy.yaml -------------------------------------------------------------------------------- /test/integration/bigip_irule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_irule.yaml -------------------------------------------------------------------------------- /test/integration/bigip_log_destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_log_destination.yaml -------------------------------------------------------------------------------- /test/integration/bigip_log_publisher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_log_publisher.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ltm_global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ltm_global.yaml -------------------------------------------------------------------------------- /test/integration/bigip_lx_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_lx_package.yaml -------------------------------------------------------------------------------- /test/integration/bigip_management_route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_management_route.yaml -------------------------------------------------------------------------------- /test/integration/bigip_message_routing_peer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_message_routing_peer.yaml -------------------------------------------------------------------------------- /test/integration/bigip_message_routing_protocol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_message_routing_protocol.yaml -------------------------------------------------------------------------------- /test/integration/bigip_message_routing_route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_message_routing_route.yaml -------------------------------------------------------------------------------- /test/integration/bigip_message_routing_router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_message_routing_router.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_dns.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_external.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_ftp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_ftp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_gateway_icmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_gateway_icmp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_http.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_https.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_icmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_icmp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_ldap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_ldap.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_mysql.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_oracle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_oracle.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_smtp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_smtp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_snmp_dca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_snmp_dca.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_tcp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_tcp_echo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_tcp_echo.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_tcp_half_open.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_tcp_half_open.yaml -------------------------------------------------------------------------------- /test/integration/bigip_monitor_udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_monitor_udp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_network_globals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_network_globals.yaml -------------------------------------------------------------------------------- /test/integration/bigip_node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_node.yaml -------------------------------------------------------------------------------- /test/integration/bigip_partition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_partition.yaml -------------------------------------------------------------------------------- /test/integration/bigip_password_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_password_policy.yaml -------------------------------------------------------------------------------- /test/integration/bigip_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_policy.yaml -------------------------------------------------------------------------------- /test/integration/bigip_policy_rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_policy_rule.yaml -------------------------------------------------------------------------------- /test/integration/bigip_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_pool.yaml -------------------------------------------------------------------------------- /test/integration/bigip_pool_member.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_pool_member.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_analytics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_analytics.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_client_ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_client_ssl.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_dns.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_fastl4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_fastl4.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_ftp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_ftp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_http.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_http2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_http2.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_http_compression.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_http_compression.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_oneconnect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_oneconnect.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_persistence_cookie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_persistence_cookie.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_server_ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_server_ssl.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_sip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_sip.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_tcp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_profile_udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_profile_udp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_provision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_provision.yaml -------------------------------------------------------------------------------- /test/integration/bigip_provision_async.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_provision_async.yaml -------------------------------------------------------------------------------- /test/integration/bigip_qkview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_qkview.yaml -------------------------------------------------------------------------------- /test/integration/bigip_remote_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_remote_role.yaml -------------------------------------------------------------------------------- /test/integration/bigip_remote_syslog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_remote_syslog.yaml -------------------------------------------------------------------------------- /test/integration/bigip_remote_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_remote_user.yaml -------------------------------------------------------------------------------- /test/integration/bigip_routedomain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_routedomain.yaml -------------------------------------------------------------------------------- /test/integration/bigip_selfip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_selfip.yaml -------------------------------------------------------------------------------- /test/integration/bigip_service_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_service_policy.yaml -------------------------------------------------------------------------------- /test/integration/bigip_smtp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_smtp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_snat_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_snat_pool.yaml -------------------------------------------------------------------------------- /test/integration/bigip_snat_translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_snat_translation.yaml -------------------------------------------------------------------------------- /test/integration/bigip_snmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_snmp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_snmp_community.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_snmp_community.yaml -------------------------------------------------------------------------------- /test/integration/bigip_snmp_trap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_snmp_trap.yaml -------------------------------------------------------------------------------- /test/integration/bigip_software_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_software_image.yaml -------------------------------------------------------------------------------- /test/integration/bigip_software_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_software_install.yaml -------------------------------------------------------------------------------- /test/integration/bigip_software_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_software_update.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ssl_certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ssl_certificate.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ssl_csr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ssl_csr.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ssl_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ssl_key.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ssl_key_cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ssl_key_cert.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ssl_ocsp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ssl_ocsp.yaml -------------------------------------------------------------------------------- /test/integration/bigip_static_route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_static_route.yaml -------------------------------------------------------------------------------- /test/integration/bigip_sys_daemon_log_tmm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_sys_daemon_log_tmm.yaml -------------------------------------------------------------------------------- /test/integration/bigip_sys_db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_sys_db.yaml -------------------------------------------------------------------------------- /test/integration/bigip_sys_global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_sys_global.yaml -------------------------------------------------------------------------------- /test/integration/bigip_timer_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_timer_policy.yaml -------------------------------------------------------------------------------- /test/integration/bigip_traffic_selector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_traffic_selector.yaml -------------------------------------------------------------------------------- /test/integration/bigip_trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_trunk.yaml -------------------------------------------------------------------------------- /test/integration/bigip_tunnel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_tunnel.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ucs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ucs.yaml -------------------------------------------------------------------------------- /test/integration/bigip_ucs_fetch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_ucs_fetch.yaml -------------------------------------------------------------------------------- /test/integration/bigip_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_user.yaml -------------------------------------------------------------------------------- /test/integration/bigip_vcmp_guest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_vcmp_guest.yaml -------------------------------------------------------------------------------- /test/integration/bigip_virtual_address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_virtual_address.yaml -------------------------------------------------------------------------------- /test/integration/bigip_virtual_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_virtual_server.yaml -------------------------------------------------------------------------------- /test/integration/bigip_vlan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_vlan.yaml -------------------------------------------------------------------------------- /test/integration/bigip_wait.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigip_wait.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_application_fasthttp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_application_fasthttp.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_application_fastl4_tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_application_fastl4_tcp.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_application_fastl4_udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_application_fastl4_udp.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_application_http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_application_http.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_application_https_offload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_application_https_offload.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_application_https_waf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_application_https_waf.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_device_discovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_device_discovery.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_device_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_device_info.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_regkey_license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_regkey_license.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_regkey_license_assignment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_regkey_license_assignment.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_regkey_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_regkey_pool.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_utility_license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_utility_license.yaml -------------------------------------------------------------------------------- /test/integration/bigiq_utility_license_assignment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/bigiq_utility_license_assignment.yaml -------------------------------------------------------------------------------- /test/integration/files/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/files/cleanup.py -------------------------------------------------------------------------------- /test/integration/inventory/hosts.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/inventory/hosts.example -------------------------------------------------------------------------------- /test/integration/targets/bigip_apm_acl/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_apm_acl/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_apm_acl/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_apm_acl/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_apm_acl/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_apm_acl/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_apm_network_access/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_apm_policy_fetch/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_apm_policy_import/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_apm_policy_import/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_asm_advanced_settings/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_asm_advanced_settings/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_asm_dos_application/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_asm_policy_fetch/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_asm_policy_import/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_asm_policy_manage/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_asm_policy_server_technology/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_asm_policy_signature_set/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_cgnat_lsn_pool/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_cli_alias/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_cli_alias/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_cli_alias/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_cli_alias/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_cli_script/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_cli_script/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_cli_script/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_cli_script/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_command/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_command/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_command/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_command/tasks/provider-cli.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider-cli/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_command/tasks/provider-rest.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider-rest/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_config/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_config/files/bigip.scf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_config/files/bigip.scf -------------------------------------------------------------------------------- /test/integration/targets/bigip_config/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_config/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_config/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_configsync_action/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_data_group/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_data_group/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_data_group/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_data_group/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth/tasks/provider.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth/tasks/provider/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: tacacs.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth_ldap/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth_ldap/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth_ldap/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth_radius/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth_radius/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth_radius_server/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_auth_radius_server/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_certificate/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_certificate/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_certificate/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_connectivity/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_dns/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_dns/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_group/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_group_member/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_group_member/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_ha_group/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_httpd/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_httpd/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_httpd/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_info/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_info/vars/issue-01191.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | dc_name1: foo_dc 3 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_license/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_license/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_ntp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_sshd/files/banner.txt: -------------------------------------------------------------------------------- 1 | This is banner.txt -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_sshd/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_sshd/templates/banner.txt: -------------------------------------------------------------------------------- 1 | This is banner.txt 2 | {{ inventory_hostname }} -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_syslog/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_syslog/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_syslog/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_syslog/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_traffic_group/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_traffic_group/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_traffic_group/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_traffic_group/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_trust/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_device_trust/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_cache_resolver/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_cache_resolver/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_nameserver/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_nameserver/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_resolver/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_resolver/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_zone/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_zone/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_dns_zone/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_dns_zone/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_file_copy/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_file_copy/files/ifile1.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_file_copy/files/lw4o61.txt: -------------------------------------------------------------------------------- 1 | hello lw4o6 2 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_file_copy/files/monitor1.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "hello world" 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_file_copy/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_file_copy/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_file_copy/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_address_list/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_address_list/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_dos_profile/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_dos_profile/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_dos_vector/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_dos_vector/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_global_rules/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_global_rules/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_log_profile/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_log_profile_network/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_policy/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_policy/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_port_list/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_port_list/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_rule/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_rule/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_rule_list/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_rule_list/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_firewall_schedule/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_datacenter/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_dns_listener/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_global/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_global/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_monitor_bigip/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_monitor_external/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_monitor_firepass/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_monitor_http/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_monitor_https/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_monitor_tcp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_monitor_tcp_half_open/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_pool/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_pool/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_pool/tasks/provider.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_pool/vars/issue-00375.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_pool_member/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_server/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_topology_record/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_topology_region/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_virtual_server/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_wide_ip/files/issue-02031.tcl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_wide_ip/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_wide_ip/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_wide_ip/tasks/provider.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_wide_ip/vars/issue-00665.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | wide_ip_1: issue-00665.local 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_gtm_wide_ip/vars/issue-00821.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | wide_ip_1: issue-00821.local 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_hostname/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_hostname/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_hostname/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_hostname/vars/issue-00601.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | valid_hostname: foo.issue00601.com 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_iapp_service/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_iapp_template/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ike_peer/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ike_peer/files/cert1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ike_peer/files/cert1.crt -------------------------------------------------------------------------------- /test/integration/targets/bigip_ike_peer/files/cert1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ike_peer/files/cert1.key -------------------------------------------------------------------------------- /test/integration/targets/bigip_ike_peer/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ike_peer/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ike_peer/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_imish_config/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_imish_config/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_interface/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_interface/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_interface/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_interface/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ipsec_policy/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ipsec_policy/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_irule/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_irule/defaults/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_irule/files/irule-01.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_irule/files/irule-01.tcl -------------------------------------------------------------------------------- /test/integration/targets/bigip_irule/files/irule-02.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_irule/files/irule-02.tcl -------------------------------------------------------------------------------- /test/integration/targets/bigip_irule/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_irule/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_irule/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_irule/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_irule/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_irule/vars/issue-00416.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_log_destination/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_log_destination/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_log_destination/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_log_destination/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_log_publisher/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_log_publisher/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_log_publisher/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_log_publisher/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ltm_global/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ltm_global/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ltm_global/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ltm_global/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_lx_package/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_lx_package/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_management_route/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_management_route/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_management_route/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_message_routing_peer/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_message_routing_protocol/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_message_routing_protocol/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_message_routing_protocol/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_message_routing_route/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_message_routing_router/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_message_routing_transport_config/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_dns/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_dns/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_dns/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_external/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_external/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_external/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_ftp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_ftp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_ftp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_gateway_icmp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_gateway_icmp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_gateway_icmp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_http/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_https/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_https/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_icmp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_icmp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_icmp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_ldap/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_ldap/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_ldap/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_mysql/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_mysql/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_mysql/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_oracle/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_oracle/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_oracle/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_smtp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_smtp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_smtp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_snmp_dca/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_tcp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_tcp_echo/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_tcp_half_open/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_udp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_udp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_monitor_udp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_network_globals/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_network_globals/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_network_globals/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_node/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_node/defaults/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_node/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_node/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_node/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_node/tasks/statuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_node/tasks/statuses.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_partition/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_password_policy/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_password_policy/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_policy/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_policy/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_policy/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_policy/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_policy/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_policy/vars/issue-00453.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | policy_name: issue-00453 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_policy_rule/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_pool/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_pool/defaults/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_pool/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_pool/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_pool/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_pool_member/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_pool_member/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_pool_member/tasks/provider.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_analytics/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_analytics/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_client_ssl/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_client_ssl/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_client_ssl/vars/issue-00418.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_client_ssl/vars/issue-00532.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | partition: foo 4 | route_domain: 99 5 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_dns/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_dns/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_dns/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_dns/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_fastl4/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_fastl4/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_fastl4/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_ftp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_http/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_http2/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_http2/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_http2/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_http_compression/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_http_compression/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_http_compression/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_http_compression/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_oneconnect/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_oneconnect/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_oneconnect/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_oneconnect/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_cookie/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_cookie/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_cookie/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_cookie/tasks/environment/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_cookie/tasks/provider.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_cookie/tasks/provider/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_cookie/tasks/provider/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_src_addr/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_src_addr/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_src_addr/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_src_addr/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_persistence_universal/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_server_ssl/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_sip/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_sip/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_sip/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_sip/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_tcp/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_tcp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_tcp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_tcp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_tcp/vars/issue-00832.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | profile_name: tcp_issue_832 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_udp/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_udp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_udp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_profile_udp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_provision/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | module1: gtm 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_provision/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_provision_async/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_provision_async/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_provision_async/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_provision_async/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_qkview/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_qkview/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_qkview/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_qkview/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_qkview/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_remote_role/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_remote_role/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_remote_role/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_remote_role/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_remote_syslog/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_remote_syslog/vars/issue-00429.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | remote_host1: foo.bar.com 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_remote_user/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_routedomain/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_selfip/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_selfip/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_selfip/tasks/provider.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_selfip/vars/issue-00420.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_service_policy/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_service_policy/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_smtp/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_smtp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_smtp/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_smtp/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_smtp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_smtp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_snat_pool/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_snat_translation/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_snmp/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_snmp/defaults/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_snmp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_snmp/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_snmp/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_snmp_community/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_snmp_community/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_snmp_community/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_snmp_community/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_snmp_trap/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_software_image/files/BIGIP-13.0.0.0.0.1645.iso.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_software_image/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_software_image/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_software_install/files/BIGIP-13.0.0.0.0.1645.iso.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_software_install/files/Hotfix-BIGIP-13.0.0.1.0.1668-HF1.iso.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_software_install/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_software_update/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_software_update/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_certificate/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | base_ca_dir: /tmp/__f5ansible__/ca 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_certificate/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_csr/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | csr_path_local: /tmp/bigip_ssl_csr1 -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_csr/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_csr/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ssl_csr/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_csr/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ssl_csr/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_key/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | base_ca_dir: /tmp/__f5ansible__/ca 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_key/files/cert1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ssl_key/files/cert1.key -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_key/files/cert2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ssl_key/files/cert2.key -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_key/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_key/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ssl_key/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_key_cert/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_key_cert/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_ocsp/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_ocsp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ssl_ocsp/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ssl_ocsp/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_static_route/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_sys_daemon_log_tmm/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_sys_daemon_log_tmm/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_sys_daemon_log_tmm/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_sys_db/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_sys_db/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_sys_db/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_sys_global/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_timer_policy/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_timer_policy/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_timer_policy/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_timer_policy/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_traffic_selector/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_traffic_selector/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_trunk/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_trunk/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_trunk/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_trunk/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_trunk/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_trunk/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_trunk/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_tunnel/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_tunnel/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_tunnel/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_tunnel/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_tunnel/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_tunnel/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ucs/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ucs/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_ucs/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_ucs/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ucs/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_ucs/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ucs/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_ucs/tasks/teardown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_ucs/tasks/teardown.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_ucs_fetch/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_user/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_user/defaults/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_user/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_user/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_user/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_user/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_user/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_user/tasks/teardown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_user/tasks/teardown.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_vcmp_guest/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | initial_image: "{{ role_path }}/files/BIGIP-13.1.0.8-0.0.3.iso.example" 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_vcmp_guest/files/BIGIP-13.0.0.0.0.1645.iso.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_vcmp_guest/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_vcmp_guest/vars/issue-00798.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | guest_name: issue-00798 -------------------------------------------------------------------------------- /test/integration/targets/bigip_vcmp_guest/vars/issue-00802.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | guest_name: issue-00802 -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_address/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/tasks/provider.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/vars/issue-00057.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | i57_partition: GEN 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/vars/issue-00093.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | issue_partition: qa 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/vars/issue-00205.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/vars/issue-00454.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/vars/issue-00483.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/vars/issue-00491.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/vars/issue-00519.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_virtual_server/vars/issue-00702.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | partition: Common 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_vlan/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_vlan/defaults/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_vlan/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_vlan/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_vlan/tasks/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_vlan/tasks/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_vlan/tasks/setup.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_wait/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/integration/targets/bigip_wait/defaults/main.yaml -------------------------------------------------------------------------------- /test/integration/targets/bigip_wait/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigip_wait/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_wait/tasks/provider-cli.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider-cli/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigip_wait/tasks/provider-rest.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider-rest/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fasthttp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fasthttp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fasthttp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fastl4_tcp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fastl4_tcp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | # Requires a default device (BIGIP) be configured 2 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fastl4_tcp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fastl4_udp/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fastl4_udp/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_fastl4_udp/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_http/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_http/tasks/environment.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: environment/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_http/tasks/environment/setup.yaml: -------------------------------------------------------------------------------- 1 | # Requires an SSG be configured 2 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_http/tasks/environment/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_http/tasks/provider-rest.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - import_tasks: provider-rest/main.yaml 4 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_http/tasks/provider-rest/setup.yaml: -------------------------------------------------------------------------------- 1 | # Requires an SSG be configured 2 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_http/tasks/provider-rest/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_https_offload/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_https_offload/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_https_offload/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_https_waf/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_https_waf/tasks/setup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_application_https_waf/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_device_discovery/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_device_info/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_regkey_license/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_regkey_license/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_regkey_license_assignment/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_regkey_license_assignment/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_regkey_pool/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_regkey_pool/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_utility_license/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_utility_license/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/integration/targets/bigiq_utility_license/tasks/teardown.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_utility_license_assignment/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | offering_1: FAKE_LIC 4 | unit_of_measure_1: yearly 5 | -------------------------------------------------------------------------------- /test/integration/targets/bigiq_utility_license_assignment/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - f5networks.f5_modules -------------------------------------------------------------------------------- /test/sanity/assigning-arg-spec-reference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/assigning-arg-spec-reference.sh -------------------------------------------------------------------------------- /test/sanity/correct-defaultdict-import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/correct-defaultdict-import.sh -------------------------------------------------------------------------------- /test/sanity/correct-iteritems-import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/correct-iteritems-import.sh -------------------------------------------------------------------------------- /test/sanity/incorrect-comparisons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/incorrect-comparisons.sh -------------------------------------------------------------------------------- /test/sanity/integration-test-idempotent-names.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/integration-test-idempotent-names.sh -------------------------------------------------------------------------------- /test/sanity/miscased-true.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/miscased-true.sh -------------------------------------------------------------------------------- /test/sanity/params-missing-keyword-arg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/params-missing-keyword-arg.sh -------------------------------------------------------------------------------- /test/sanity/q-debugging-exists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/q-debugging-exists.sh -------------------------------------------------------------------------------- /test/sanity/unnecessary-default-none.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/unnecessary-default-none.sh -------------------------------------------------------------------------------- /test/sanity/unnecessary-quotes-around-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/unnecessary-quotes-around-common.sh -------------------------------------------------------------------------------- /test/sanity/unnecessary-required-false.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/test/sanity/unnecessary-required-false.sh -------------------------------------------------------------------------------- /tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/ansible.junit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/licenses/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F5Networks/f5-ansible/HEAD/tox.ini --------------------------------------------------------------------------------