ansible/test/integration/targets
psharkey f8fb391548 new connection plugin aws_ssm (#49652)
* new connection plugin aws_ssm

Return code may be at the end of the last command output line.

Marking regex.

Ensure command status code is on it's owm line - last 3 lines are not part of command stdout.

* Adding timeout parameter - aws_ssm_timeout

Default 10 second timeout (https://docs.ansible.com/ansible/2.4/intro_configuration.html#timeout) is marginal.
This avoids changing this default and allowing the SSM timeout to be controlled via inventory.
This change wraps commands so commands which may never return do timeout.

* Added integration tests

Added AWS SSM Executor, target and config functions

Fixed more code for integration tests

Improved execution

Added S3 bucket name

Fixed pylint

Reverted lib changes

Reverted few more changes

Improved support for integration test execution

added ansible role for aws_ssm_integration_test setup and teardown and modifiled runme.sh

Reset to 17fa565 commit

inventory file location changed

change inventory file location

deleted meta and handlers folder as it is not required

deleted main.yml inside vars, removed extra space from tasks/main.yml, Added appropriate tags for ec2 and delete test folder as it is not required

deleted main.yml inside vars, removed extra space from tasks/main.yml, Added appropriate tags for ec2 and delete test folder as it is not required

modified task/main.yml

added region variable and fixed pattern for using variable

modified policy for IAM role

moved to first line of scrip set -eux

Updated Session Manager plugin installation

edited custme policy

Included tags for Session Manager plugin installation

Added README.md

Upddated README and added support for ssm-plugin for Amazon-Linux

Added Windows Integration test support

Improved user data for Linux

Added random value generation for the role and policy,delete vars_to_delete.yml

upadte README in vars

fixed typo

update policy

Updated IAM policy file

update playbook

Updated playbook to include ssm-agent userdata

modified jing2 template

modified jing2 template

modified jing2 template and fixed role deletion

fixed role name issue while deleting and task name

Updated playbook to include wait_connection for ec2

Corrected Synatx changes and updated ssm-plugin debian file

Changed region variable to us-east-1

Removed vars file and updated  to /tmp dir

fixed typo

Improved setup

Fixed boto3 dependency

Fixed missing tag

Added boto as dependency as well

Improved execution workflow

Trying other way of defining tags

Fixed undefined var

Changed AMI ID to Amazon Linux

Improved Tags

Ok, created different directory for WIndows test execution

Fixed IAM Role Name for Windows

Fixed inventory not found

Improved integration test execution

Fixed Windows Inventory path

Fixed wrong Windows AMI ID

Fixes issue for windows test execution

* Don't attempt to terminate sessions without a session id.

* Added Unit test cases file for AWS SSM Connection plugin

updated test file with close

updated unit test file with start_session

updated test files

* Eliminate AWS CLI dependency for terminal session.

* Removing unused code, cleanup logic.

Reduce mark length - 52^26 should be plenty
Be explicit about subprocess.Popen options
Simplify if/else for mark end
_stdin_readline is not used now

* updated test file

Added exec command and fixed close session unit tests

updated test files

Improved ansible ssm test command

updated file for lint checks

updated for pylint checks

New Unit_testcases for pre-signed URL file

removing additonal spaces and white spaces

remaning error changes

fixed changes

fixed spaces issues

python 2.7 version and whitespaces

python 2.7 version and whitespaces

python 2.7 skip if

space issue with 16:1

Unit test cases for windows and linux

Unit test cases for windows and linux with issues fixed issues

Unit test cases for windows and linux with issues fixed issues1

* Added support for S3 Pre-signed URLs

* Updated documentation and comments

* Documentation and curl dependency removal for controller machine

Fixing lint errors and removing requirements.

* Adding support for Windows remote EC2 instances.

* Added Encoding fixes

* Updating author section and adding obvious requirement for the SSM agent.

* Refactor stdout post processing
Attempt to get real return code on error (test using ansible -m raw -a 'cmd /c exit 99'.
Fixes problem at terminal width (ansible windows -i ./hosts.yml -m setup).

* Refactor back to a single module.

* Fixed fetch file for windows

* ssm usage examples for linux and windows

* Update aws_ssm.py

Service state corrected.

* Strip line continuation when at terminal width - otherwise replace.
Strip ANSI control sequences only for Windows.

Test playbook:

---
- name: test
  hosts: windows
  gather_facts: False
  vars:
    small: 'abc'
  tasks:
  - name:
    set_fact:
      large: "{{ lookup('password', '/dev/null length=2000 chars=ascii_letters,digits,hexdigits,punctuation') }}"
  - name: small fixed
    raw: echo '{{ small }}'
    register: small_result
    changed_when: False
  - name: check
    assert:
      that:
        - "(item | length) == (small | length)"
        - "item == small"
      msg: "'{{ item | length }} must equal '{{ small | length }}' and '{{ item }}' must match '{{ small }}'"
    with_items:
      - "{{ small_result.stdout_lines[0] }}"
  - name: large random
    raw: echo '{{ large }}'
    register: large_result
    changed_when: False
  - name: check
    assert:
      that:
        - "(item | length) == (large | length)"
        - "item == large"
      msg: "'{{ item | length }} must equal '{{ large | length }}' and '{{ item }}' must match '{{ large }}'"
    with_items:
      - "{{ large_result.stdout_lines[0] }}"
  - name: gather facts
    setup:

* Correct module parameter names.

* Updated Windows Executable variable.

Updated Windows Executable variable to "ansible_shell_type".

Fixing Examples with raw declaration

Updated the plugin timeout variable.

* Fix to work with dynamic inventory plug-in

* IntegrationTest template updates

* Removing unsupported flag for integration tests.
Fixing unit test.

* Adding shippable group.

* SSM Usage examples with dynamic inventory plugin

* Fixing yamllint errors.

* Fixed Integration tests

* Fixed Integration tests

* Updates for python3.

Removing python3 restriction.

* Remove python3 restriction.
Change block from retry to always

* Fixed Integration tests with Python 3

* Fixed shellcheck

* Fix for Windows which could pick up end mark prematurely
Move debug to _wrap_command and use a single return point

Single-quotes not needed around linux marks
Fix typo in comment

End mark to new command.

* Unit test cases now works on Python2 and Python3

* Skip tests on Python 2.6

* Fix for wait_for_connection module for windows.

* Updated changes as per review comments

* Fixing broken pipe error seen with session-manager-plugin version 1.1.17.0.
Eliminating sleep as this looks to be fixed in session-manager-plugin version 1.1.17.0.

* Adding back delays for Windows with session-manager-plugin 1.1.17.0.

* Updating Windows AMI ID for integration Test

* Upgrading windows ssm agent to the latest

* Adding boilerplate code.

* Windows ami and integration test updates

* Revert "Windows ami and integration test updates"

This reverts commit cd6ca3579b7cda584bd9c065f9c0835bddb23627.

* Updating windows ami for Integration tests

* Integration test suite updates and fixes.

* Updates and fixes

* Eliminate duplicate processing for exit code on failed command.

* Add powershell wrap.

* Refactor windows post_process.

* AMI Lookup, aliases, OSC filter, test suite updates

Co-authored-by: Gaurav Ashtikar <gau1991@gmail.com>
Co-authored-by: Deepak Choudhary <40276333+deepsvc@users.noreply.github.com>
Co-authored-by: Hanumanth <46720371+hanumantharaomvl@users.noreply.github.com>
Co-authored-by: KUMAR MAYANK <mayank@flux7.com>
2020-01-11 15:22:01 +10:00
..
aci_aaa_user
aci_aaa_user_certificate
aci_access_port_block_to_access_port
aci_access_port_to_interface_policy_leaf_profile
aci_access_sub_port_block_to_access_port
aci_aep
aci_aep_to_domain
aci_ap
aci_bd
aci_bd_subnet
aci_config_rollback
aci_config_snapshot
aci_contract
aci_contract_subject
aci_contract_subject_to_filter
aci_domain
aci_domain_to_vlan_pool
aci_encap_pool
aci_encap_pool_range
aci_epg
aci_epg_to_contract
aci_epg_to_domain
aci_fabric_node
aci_filter
aci_filter_entry
aci_firmware_source
aci_interface_policy_cdp
aci_interface_policy_leaf_policy_group
aci_interface_policy_leaf_profile
aci_interface_policy_ospf
aci_interface_selector_to_switch_policy_leaf_profile
aci_rest
aci_static_binding_to_epg
aci_switch_leaf_policy_profile
aci_switch_leaf_selector
aci_switch_policy_vpc_protection_group
aci_taboo_contract
aci_tenant
aci_vlan_pool
aci_vlan_pool_encap_block
aci_vmm_credential
aci_vrf
acl acl: fix module failure if there're spaces in a path (#63280) 2019-10-11 10:40:19 -07:00
acme_account
acme_account_info
acme_certificate acme_certificate: add select_chain option (#60710) 2019-10-29 08:09:15 +01:00
acme_certificate_revoke
acme_challenge_cert_helper
acme_inspect
add_host
aix_devices
aix_filesystem
alternatives
ansiballz_python Set alter_sys=True instead of False to address backwards incompat (#64670) 2019-11-11 16:47:35 -06:00
ansible vars: Fail with warning for extra_vars filename without @ sign (#59915) 2019-12-19 18:01:22 +05:30
ansible-doc WIP - Fix ansible-doc bugs and add integration tests. (#62461) 2019-09-17 15:45:30 -07:00
ansible-galaxy ansible-galaxy ignore empty server_list (#65986) 2020-01-09 14:24:36 -05:00
ansible-runner
any_errors_fatal
apache2_module
apt apt target: use 'until' when the cache is updated (#65456) 2019-12-12 12:45:54 -07:00
apt_key
apt_repository
archive Fix/archive empty file (#64895) 2019-11-25 11:23:14 -05:00
args
asa_acl
asa_command
asa_config
asa_og
assemble
assert
async
async_extra_data
async_fail
at
authorized_key
aws_acm make concurrent aws_acm integration tests not clash (#64660) 2020-01-02 17:06:56 -07:00
aws_api_gateway
aws_caller_info
aws_codebuild
aws_codecommit
aws_codepipeline
aws_config
aws_eks
aws_elasticbeanstalk_app
aws_glue_connection
aws_inspector
aws_kms
aws_lambda Fix to return data when using lambda_info module (#64548) 2019-12-21 20:29:05 -05:00
aws_s3
aws_secret
aws_ses_identity
aws_ses_identity_policy
aws_ses_rule_set
aws_ssm_parameters
aws_step_functions_state_machine add module aws_step_functions_state_machine_execution (#64431) 2019-12-10 14:08:49 -05:00
aws_waf_web_acl
azure_rm_acs
azure_rm_aks
azure_rm_appgateway
azure_rm_appserviceplan
azure_rm_automationaccount
azure_rm_autoscale
azure_rm_availabilityset
azure_rm_azurefirewall
azure_rm_batchaccount
azure_rm_cdnprofile
azure_rm_containerinstance
azure_rm_containerregistry
azure_rm_cosmosdbaccount
azure_rm_deployment
azure_rm_devtestlab
azure_rm_dnszone
azure_rm_functionapp
azure_rm_gallery azure_rm_galleryimageversion: support data disk snapshot as source input (#65405) 2019-12-05 08:31:47 +08:00
azure_rm_hdinsightcluster
azure_rm_image
azure_rm_iothub
azure_rm_keyvault
azure_rm_loadbalancer
azure_rm_lock
azure_rm_manageddisk
azure_rm_mariadbserver
azure_rm_monitorlogprofile
azure_rm_mysqlserver
azure_rm_networkinterface
azure_rm_postgresqlserver
azure_rm_publicipaddress
azure_rm_rediscache
azure_rm_resource
azure_rm_resourcegroup
azure_rm_roledefinition
azure_rm_routetable
azure_rm_securitygroup
azure_rm_servicebus
azure_rm_sqlserver
azure_rm_storageaccount Disable failing azure_rm_storageaccount test. 2019-12-20 16:11:21 -08:00
azure_rm_storageblob
azure_rm_subnet
azure_rm_trafficmanagerprofile
azure_rm_virtualmachine
azure_rm_virtualmachineextension
azure_rm_virtualmachineimage_facts
azure_rm_virtualmachinescaleset
azure_rm_virtualnetwork
azure_rm_virtualnetworkgateway
azure_rm_virtualnetworkpeering
azure_rm_webapp
azure_rm_workspace
become
binary
binary_modules
binary_modules_posix
binary_modules_winrm
blockinfile
blocks Fix ansible_failed_{task,result} undefined in rescue (#64831) 2019-11-14 15:50:54 +01:00
callback_default clean "changed" only after it has been processed (#59958) 2019-10-10 18:24:31 -04:00
callback_log_plays
callback_retry_task_name
ce_is_is_instance add a new module to create isis instance. (#63716) 2019-11-26 11:23:05 +00:00
ce_is_is_interface add a new module to configure isis on interface. (#63717) 2019-11-26 11:12:31 +00:00
ce_is_is_view add a new module to configure isis on isis-view. (#63720) 2019-11-20 14:37:13 +00:00
ce_lacp add a new module ce lacp to manage Eth-Trunk interfaces mode (#58077) 2019-10-14 15:14:43 +01:00
ce_lldp Add a new module ce_lldp to manage Link Layer Discovery Protocol(LLDP) (#63395) 2019-10-18 13:15:42 +01:00
ce_lldp_interface Fix tests which have unparsable yaml 2019-12-09 16:54:29 -08:00
ce_mdn_interface add a new module to configure mdn on interface. (#63755) 2019-11-26 11:21:40 +00:00
ce_multicast_global add a new module to configure multicast global. (#63745) 2019-11-26 11:22:39 +00:00
ce_multicast_igmp_enable add a new module to configure multicast igmp and enable it. (#63746) 2019-11-26 11:38:30 +00:00
ce_static_route_bfd Fix tests which have unparsable yaml 2019-12-09 16:54:29 -08:00
certificate_complete_chain
changed_when
check_mode
cli Wrap CLI Passwords with AnsibleUnsafeText, ensure unsafe context is not lost during encode/decode (#63351) 2019-10-11 09:17:10 -05:00
cloud_init_data_facts
cloudformation Cloudformation info checkmode (#65958) 2019-12-19 10:45:22 -07:00
cloudformation_stack_set
cloudfront_distribution
cloudscale_common
cloudscale_floating_ip
cloudscale_server
cloudscale_server_group
cloudscale_volume
cloudtrail cloudtrail: Initial integration tests (#61919) 2019-09-20 18:46:37 -07:00
cloudwatchlogs Assign AWS Cloudwatch Metric Filter via Ansible (#59925) 2020-01-04 11:39:01 -07:00
cnos_backup Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_banner
cnos_bgp Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_command Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_conditional_command Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_conditional_template Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_config Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_facts Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_image Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_interface
cnos_l2_interface
cnos_l3_interface
cnos_linkagg
cnos_lldp
cnos_logging
cnos_rollback Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_save Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_showrun Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_static_route
cnos_system
cnos_template Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_user
cnos_vlag Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
cnos_vlan
cnos_vrf
collections Make sorting in collection_loader match plugin loader (#65776) 2019-12-16 11:28:24 -05:00
collections_plugin_namespace Fix plugin names for collection plugins. (#60317) 2019-09-18 17:47:56 -07:00
collections_relative_imports
command_shell
conditionals
config
connection
connection_aws_ssm new connection plugin aws_ssm (#49652) 2020-01-11 15:22:01 +10:00
connection_buildah
connection_chroot
connection_docker
connection_jail
connection_libvirt_lxc
connection_local
connection_lxc
connection_lxd
connection_paramiko_ssh
connection_podman Add extra args and executable name to podman connection plugin (#63166) 2019-10-17 13:48:29 +05:30
connection_posix
connection_psrp
connection_ssh
connection_windows_ssh
connection_winrm
consul
copy copy - check for changes beyond first level of subdirectories (#58323) 2019-10-30 12:17:11 -04:00
cron cronvar - use correct binary name (#63279) 2019-10-09 18:33:25 -04:00
cronvar cronvar - use correct binary name (#63279) 2019-10-09 18:33:25 -04:00
cs_account
cs_affinitygroup
cs_cluster
cs_common
cs_configuration
cs_disk_offering
cs_domain
cs_firewall
cs_host
cs_image_store
cs_instance
cs_instance_info
cs_instance_nic
cs_instance_nic_secondaryip
cs_instance_password_reset
cs_instancegroup
cs_ip_address
cs_iso
cs_loadbalancer_rule
cs_network
cs_network_acl
cs_network_acl_rule
cs_network_offering
cs_physical_network
cs_pod
cs_portforward
cs_project
cs_region
cs_resourcelimit
cs_role
cs_role_permission
cs_router
cs_securitygroup
cs_securitygroup_rule
cs_service_offering
cs_snapshot_policy
cs_sshkeypair
cs_storage_pool
cs_template
cs_traffic_type
cs_user
cs_vlan_ip_range
cs_vmsnapshot
cs_volume
cs_vpc
cs_vpc_offering
cs_vpn_connection
cs_vpn_customer_gateway
cs_vpn_gateway
cs_zone
cs_zone_info
debconf
debug
delegate_to
dellos6_command
dellos6_config
dellos6_facts
dellos9_command
dellos9_config
dellos9_facts
dellos10_command
dellos10_config
dellos10_facts
deploy_helper
digital_ocean_floating_ip
digital_ocean_ssh_key
digital_ocean_tag
dms_endpoint
dms_replication_subnet_group
dnf DNF Handle Empty AppStream stream definition (#63819) 2019-10-24 00:57:31 -04:00
docker_config
docker_container docker_container: configure removal wait timeout (#66144) 2020-01-04 17:56:59 +01:00
docker_container_info
docker_host_info
docker_image docker_* modules: fix various errors in argument specs (#65632) 2019-12-09 13:39:02 +01:00
docker_image_info
docker_login Split up docker-registry test target. (#65211) 2019-12-04 14:14:43 -08:00
docker_network docker_network: fix multiple subnet (of same IP version) idempotence (#65839) 2019-12-29 23:16:17 +01:00
docker_network_info
docker_node
docker_node_info
docker_prune
docker_secret
docker_stack
docker_swarm
docker_swarm_info
docker_swarm_service docker_swarm_service: Fix parsing of Healthcheck.StartPeriod (#66151) 2020-01-02 09:23:36 -05:00
docker_swarm_service_info
docker_volume
docker_volume_info
dpkg_selections
ec2_ami
ec2_asg
ec2_eip ec2_eip Don't throw an exception when re-releasing an EIP (idempotency) (#62332) 2019-11-13 13:27:35 -07:00
ec2_elb_lb
ec2_group Allow updating of ec2_group rules with EC2 classic ELB targets (#62374) 2019-11-26 11:29:03 -05:00
ec2_instance Run ec2_instance tests in parallel and re-enable them (#63800) 2019-12-18 13:18:23 -07:00
ec2_key
ec2_launch_template ec2_launch_template: Add default_version and latest_version to output, matching the documentation (#61279) 2019-12-18 15:53:57 -05:00
ec2_metadata_facts
ec2_metric_alarm Ec2 metric alarm boto3 and treat missing data (#62669) 2019-12-12 14:09:09 -07:00
ec2_tag
ec2_transit_gateway
ec2_vol
ec2_vol_info
ec2_vpc_egress_igw
ec2_vpc_igw
ec2_vpc_nacl ec2_vpc_nacl and ec2_vpc_nacl_info migrate to AnsibleAWSModule and add tests (#63163) 2019-10-08 13:27:24 -07:00
ec2_vpc_nat_gateway
ec2_vpc_net fix ec2_vpc_net test instability (#65184) 2019-12-19 16:30:44 -07:00
ec2_vpc_route_table ec2_vpc_route_table_info integration tests (#63413) 2019-10-22 14:46:40 -04:00
ec2_vpc_subnet
ec2_vpc_vgw
ec2_vpc_vpn_facts
ecs_certificate
ecs_cluster Add tags to aws ecs task (#53717) 2019-12-13 16:54:44 -07:00
ecs_domain
ecs_ecr Add support for ECR Lifecycle Policies to ecs_ecr (#48997) 2019-12-19 11:41:41 -07:00
efs
elb_application_lb Add aws elb multiple host header support (#65021) 2019-11-21 09:42:37 -07:00
elb_classic_lb
elb_network_lb elb_{network_lb,target_group}: allow UDP/TCP_UDP (#65828) 2019-12-19 15:06:16 -07:00
elb_target elb_{network_lb,target_group}: allow UDP/TCP_UDP (#65828) 2019-12-19 15:06:16 -07:00
elb_target_info
embedded_module
enos_command Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
enos_config Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
enos_facts Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
environment
eos_banner Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_bgp Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_command Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_config Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_eapi Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_facts Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_interface Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_interfaces Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_l2_interface Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_l2_interfaces Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_l3_interface Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_l3_interfaces Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_lacp Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_lacp_interfaces Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_lag_interfaces Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_linkagg Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_lldp Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_lldp_global Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_lldp_interfaces Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_logging Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_smoke Add test for reboot & wait_for_connection on EOS & IOS (#63014) 2020-01-07 14:24:26 -05:00
eos_static_route Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_system Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_user Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_vlan Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_vlans Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
eos_vrf Add connection_local / connection_httpapi skip to eos (#65948) 2019-12-18 13:32:56 -05:00
error_from_connection
etcd3
exos_command Fix tests which have unparsable yaml 2019-12-09 16:54:29 -08:00
exos_config Fix tests which have unparsable yaml 2019-12-09 16:54:29 -08:00
exos_facts Fix tests which have unparsable yaml 2019-12-09 16:54:29 -08:00
exos_l2_interfaces exos_l2_interfaces Resource module (#63113) 2019-10-18 13:10:19 -04:00
exos_lldp_global
exos_lldp_interfaces exos_lldp_interfaces resource module (#62108) 2019-10-17 13:40:17 -04:00
exos_vlans Added Exos vlan resource module (#61865) 2019-10-10 06:50:04 -04:00
expect
facts_d
failed_when
fetch
file
filesystem Fix filesystem integration test for CentOS 8 (#64866) 2019-11-15 17:03:27 -05:00
filters Stop using {{ }} in templates for conditionals in integration test (#65797) 2020-01-07 11:12:55 -05:00
find
firewalld Fix firewalld integration tests for CentOS 8 (#64873) 2019-11-15 16:59:39 -05:00
flatpak
flatpak_remote
fortios_address
fortios_ipv4_policy
gathering
gathering_facts
gcp_appengine_firewall_rule Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_bigquery_dataset Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_bigquery_table Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_cloudbuild_trigger
gcp_cloudfunctions_cloud_function Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_cloudscheduler_job Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_cloudtasks_queue Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_compute_address Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_compute_autoscaler Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_compute_backend_bucket Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_compute_backend_service Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_compute_disk Bug fixes for GCP modules (#61829) 2019-10-01 18:27:42 -04:00
gcp_compute_firewall Bug fixes for GCP modules (#64193) 2019-11-01 13:46:13 -04:00
gcp_compute_forwarding_rule Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_global_address Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_global_forwarding_rule Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_health_check Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_http_health_check Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_https_health_check Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_image Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_instance Bug fixes for GCP modules (#64823) 2019-11-25 19:20:07 -05:00
gcp_compute_instance_group Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_instance_group_manager Bug fixes for GCP modules (#61915) 2019-10-02 14:31:45 -04:00
gcp_compute_instance_template Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_interconnect_attachment
gcp_compute_network Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_network_endpoint_group New Module: gcp_compute_network_endpoint_group (#63121) 2019-10-04 13:09:34 -04:00
gcp_compute_node_group New Module: gcp_compute_node_group (#63080) 2019-10-04 13:10:53 -04:00
gcp_compute_node_template New Module: gcp_compute_node_template (#63064) 2019-10-02 14:30:10 -04:00
gcp_compute_region_backend_service New Module: gcp_compute_region_backend_service (#63154) 2019-10-07 13:22:26 -04:00
gcp_compute_region_disk Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_reservation New Module: gcp_compute_reservation (#64133) 2019-11-01 13:46:42 -04:00
gcp_compute_route Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_router Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_snapshot Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_ssl_certificate Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_ssl_policy Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_subnetwork Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_target_http_proxy Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_target_https_proxy Bug fixes for GCP modules (#61916) 2019-10-01 18:27:19 -04:00
gcp_compute_target_instance New Module: gcp_compute_target_instance (#64135) 2019-11-04 14:52:28 -05:00
gcp_compute_target_pool Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_compute_target_ssl_proxy Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_compute_target_tcp_proxy Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_compute_target_vpn_gateway Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_compute_url_map Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_compute_vpn_tunnel Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_container_cluster Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_container_node_pool Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_dns_managed_zone Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_dns_resource_record_set Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_filestore_instance Bug fixes for GCP modules (#61590) 2019-10-01 18:27:51 -04:00
gcp_iam_role Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_iam_service_account Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_iam_service_account_key
gcp_kms_crypto_key Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_kms_key_ring Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_logging_metric New Module: gcp_logging_metric (#64339) 2019-11-04 14:51:52 -05:00
gcp_mlengine_model Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_mlengine_version Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_pubsub_subscription Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_pubsub_topic Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_redis_instance Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_resourcemanager_project Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_runtimeconfig_config New Module: gcp_runtimeconfig_config (#63883) 2019-10-24 17:16:24 -04:00
gcp_runtimeconfig_variable New Module: gcp_runtimeconfig_variable (#63885) 2019-10-24 17:15:57 -04:00
gcp_serviceusage_service New Module: gcp_serviceusage_service (#64588) 2019-11-11 14:08:09 -05:00
gcp_sourcerepo_repository Bug fixes for GCP modules (#61917) 2019-10-01 18:27:03 -04:00
gcp_spanner_database Bug fixes for GCP modules (#61918) 2019-10-01 18:26:56 -04:00
gcp_spanner_instance Bug fixes for GCP modules (#61918) 2019-10-01 18:26:56 -04:00
gcp_sql_database Bug fixes for GCP modules (#61918) 2019-10-01 18:26:56 -04:00
gcp_sql_instance Bug fixes for GCP modules (#61918) 2019-10-01 18:26:56 -04:00
gcp_sql_user Bug fixes for GCP modules (#61918) 2019-10-01 18:26:56 -04:00
gcp_storage_bucket Bug fixes for GCP modules (#61918) 2019-10-01 18:26:56 -04:00
gcp_storage_bucket_access_control Bug fixes for GCP modules (#61918) 2019-10-01 18:26:56 -04:00
gcp_storage_object
gcp_tpu_node Bug fixes for GCP modules (#61918) 2019-10-01 18:26:56 -04:00
gem
get_certificate
get_url [get_url] Return status_code on HTTP 304 (#65739) 2019-12-19 14:50:44 -05:00
getent
git
git_config
github_issue
gitlab_deploy_key
gitlab_group
gitlab_hook
gitlab_project
gitlab_project_variable
gitlab_runner
gitlab_user
grafana_datasource Add integration tests for grafana_datasource module (#63986) 2019-10-29 22:39:38 +01:00
group Fix group integration test for CentOS 8 (#64858) 2019-11-15 17:07:02 -05:00
group_by
groupby_filter
handlers free strategy - include failed hosts that were notified (#65576) 2019-12-19 14:10:51 -05:00
hash
hcloud_datacenter_info
hcloud_floating_ip hcloud: Add Delete Protection to hcloud_floating_ip and hcloud_floating_ip_info (#63663) 2019-10-18 23:27:23 +02:00
hcloud_floating_ip_info hcloud_floating_ip_info: create temporary ip in integration tests 2019-10-02 20:17:20 +02:00
hcloud_image_info Fix and reenable hcloud tests 2019-12-06 08:30:01 -08:00
hcloud_location_info
hcloud_network hcloud: Add delete_protection to hcloud_network and hcloud_network_info (#63656) 2019-10-18 10:54:01 +02:00
hcloud_network_info hcloud: Add delete_protection to hcloud_network and hcloud_network_info (#63656) 2019-10-18 10:54:01 +02:00
hcloud_rdns Fix and reenable hcloud tests 2019-12-06 08:30:01 -08:00
hcloud_route
hcloud_server Fix and reenable hcloud tests 2019-12-06 08:30:01 -08:00
hcloud_server_info
hcloud_server_network
hcloud_server_type_info
hcloud_ssh_key
hcloud_ssh_key_info
hcloud_subnetwork
hcloud_volume hcloud: Add Delete Protection to hcloud_volume and hcloud_volume_info (#63665) 2019-10-18 23:28:12 +02:00
hcloud_volume_info hcloud_volume: add linux_device to return values (#62865) 2019-10-02 20:19:10 +02:00
hg
hosts_field
hwc_ecs_instance hwc: Add instance module (#60180) 2019-10-19 09:50:03 +02:00
hwc_evs_disk hwc: Add disk module (#59919) 2019-10-19 10:09:40 +02:00
hwc_network_vpc
hwc_smn_topic
hwc_vpc_eip hwc: Add eip module (#60182) 2019-10-19 12:58:29 +02:00
hwc_vpc_peering_connect hwc: Add new module to peering (#60190) 2019-10-19 11:27:53 +02:00
hwc_vpc_port hwc: Add port module (#60188) 2019-10-19 11:32:10 +02:00
hwc_vpc_private_ip Add private ip module (#60191) 2019-10-18 10:15:13 +01:00
hwc_vpc_route Add route module (#60189) 2019-10-12 18:15:02 +02:00
hwc_vpc_security_group hwc: Add security group module (#60187) 2019-10-19 09:43:50 +02:00
hwc_vpc_security_group_rule hwc: Add security group rule module (#60186) 2019-10-19 12:53:02 +02:00
hwc_vpc_subnet Add subnet module (#60183) 2019-10-18 11:00:32 +01:00
iam_group
iam_password_policy
iam_policy Rewrite iam_policy using boto3 (#63924) 2019-11-20 16:59:02 -07:00
iam_role Feature: iam_role tags (#63944) 2019-11-18 13:41:52 -07:00
iam_saml_federation
iam_user iam_user Additional integration tests (#63768) 2019-10-30 09:37:33 -04:00
ignore_errors
ignore_unreachable
include_import Check if task file is specified for import_tasks (#57572) 2019-12-24 10:26:32 +05:30
include_parent_role_vars
include_vars include_vars: Check NoneType for raw_params (#64979) 2019-11-26 13:11:02 -05:00
includes
influxdb_user
ini_file
interpreter_discovery_python Default to python3 on Debian 10 (#63097) 2019-11-14 13:52:13 -06:00
intersight_info
intersight_rest_api
inventory inventory: Fail on non-existing limit file (#59758) 2019-12-12 09:09:40 +05:30
inventory_aws_conformance Sanity test fixups - AWS related tests (#64093) 2019-10-30 09:48:59 -07:00
inventory_aws_ec2
inventory_aws_rds
inventory_cloudscale cloudscale: fix boilerplate (#63533) 2019-10-16 11:02:32 +02:00
inventory_docker_machine
inventory_docker_swarm Make Docker and Podman play nice (#65009) 2019-11-18 15:08:58 -05:00
inventory_foreman
inventory_foreman_script Update foreman inventory to use foreman's inventory report (#62438) 2019-12-03 15:11:40 -07:00
inventory_kubevirt_conformance
inventory_limit Account for empty strings when splitting the host pattern (#62442) 2019-09-20 16:03:51 -04:00
inventory_path_with_comma
inventory_plugin_config
inventory_vmware_vm_inventory vcenter provider: Only rely on VMWARE_TEST_PLATFORM 2019-09-20 10:33:44 -04:00
inventory_yaml
ios_banner Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_bgp Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_command Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_config Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_facts Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_file Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_interface Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_interfaces Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_l2_interface Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_l2_interfaces Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_l3_interface Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_l3_interfaces Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_lacp Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_lacp_interfaces Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_lag_interfaces Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_linkagg Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_lldp Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_lldp_global Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_lldp_interfaces Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_logging Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_ntp Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_ping Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_smoke Add test for reboot & wait_for_connection on EOS & IOS (#63014) 2020-01-07 14:24:26 -05:00
ios_static_route Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_system Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_user Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_vlan Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
ios_vlans Split ios tests into network_cli and local connections (#65921) 2019-12-17 14:10:52 -05:00
iosxr_banner
iosxr_bgp
iosxr_command
iosxr_config
iosxr_facts
iosxr_interface
iosxr_interfaces Fix traceback for empty config (#62515) 2019-10-03 19:45:52 +05:30
iosxr_l2_interfaces Fix traceback for empty config (#62515) 2019-10-03 19:45:52 +05:30
iosxr_l3_interfaces Fix traceback for empty config (#62515) 2019-10-03 19:45:52 +05:30
iosxr_lacp Fix traceback for empty config (#62515) 2019-10-03 19:45:52 +05:30
iosxr_lacp_interfaces Fix traceback for empty config (#62515) 2019-10-03 19:45:52 +05:30
iosxr_lag_interfaces Fix traceback for empty config (#62515) 2019-10-03 19:45:52 +05:30
iosxr_lldp_global Fix traceback for empty config (#62515) 2019-10-03 19:45:52 +05:30
iosxr_lldp_interfaces Fix traceback for empty config (#62515) 2019-10-03 19:45:52 +05:30
iosxr_logging
iosxr_netconf
iosxr_smoke
iosxr_system
iosxr_user
ipify_facts
iso_extract Fix iso_extract tests for CentOS 8 (#64861) 2019-11-15 17:37:13 -05:00
iterators
java_cert
jboss
jinja2_native_types
junos_banner
junos_command Fix cli context check for network_cli connection (#64697) 2019-11-26 08:40:49 +05:30
junos_config
junos_facts
junos_interface
junos_interfaces
junos_l2_interface
junos_l2_interfaces
junos_l3_interface
junos_l3_interfaces
junos_lacp
junos_lacp_interfaces
junos_lag_interfaces
junos_linkagg
junos_lldp
junos_lldp_global
junos_lldp_interface
junos_lldp_interfaces
junos_logging
junos_netconf
junos_rpc
junos_smoke Add test for reboot & wait_for_connection on EOS & IOS (#63014) 2020-01-07 14:24:26 -05:00
junos_static_route
junos_static_routes Add junos_static_routes module (#65239) 2019-12-04 12:59:56 +01:00
junos_system
junos_user
junos_vlan
junos_vlans
junos_vrf
k8s Add more kubernetes Service tests (#62581) 2019-10-25 11:21:13 +01:00
known_hosts
lambda_policy
lightsail lightsail - Use AnsibleAWSModule (#65275) 2019-12-02 13:12:44 -07:00
lineinfile lineinfile - don't run os.makedirs on empty dir path (#63921) 2019-10-29 13:06:17 -04:00
listen_ports_facts Add method to automatically clean up after an action plugin (#65509) 2019-12-06 17:29:26 -05:00
locale_gen
lookup_hashi_vault Support non-KV and KV v1/v2 secret engines (#64288) 2019-11-25 06:18:49 +01:00
lookup_inventory_hostnames
lookup_lmdb_kv lookup: lmdb_kv: add tests 2019-09-30 11:00:00 +02:00
lookup_passwordstore Fix lookup_passwordstore integration test for CentOS 8 (#64869) 2019-11-15 17:37:43 -05:00
lookup_paths
lookup_properties
lookups Fix env lookup plugin error on utf8 values (#65541) 2019-12-25 17:24:38 +05:30
loop_control
loops unsafe wrapping should only happen for with_ loops (#64401) 2019-11-06 10:31:55 -06:00
luks_device Add passphrase support for luks_device (#65050) 2019-11-30 20:50:30 +01:00
lvg
mail
mariadb_replication Fix MariaDB integration tests for CentOS 8 (#64859) 2019-11-15 17:06:27 -05:00
memset_dns_reload
memset_memstore_info
memset_server_info
memset_zone
memset_zone_domain
memset_zone_record
meraki_admin/tasks
meraki_config_template Meraki - Remove integration tests which work with HTTP respons… (#64975) 2019-11-20 09:24:12 -05:00
meraki_content_filtering
meraki_device
meraki_firewalled_services
meraki_malware
meraki_mr_l3_firewall
meraki_mx_l3_firewall Meraki - Remove integration tests which work with HTTP respons… (#64975) 2019-11-20 09:24:12 -05:00
meraki_mx_l7_firewall
meraki_nat/tasks
meraki_network
meraki_organization
meraki_snmp
meraki_ssid Meraki - Remove integration tests which work with HTTP respons… (#64975) 2019-11-20 09:24:12 -05:00
meraki_static_route
meraki_switchport Meraki - Remove integration tests which work with HTTP respons… (#64975) 2019-11-20 09:24:12 -05:00
meraki_syslog/tasks Meraki - Remove integration tests which work with HTTP respons… (#64975) 2019-11-20 09:24:12 -05:00
meraki_vlan Meraki - Remove integration tests which work with HTTP respons… (#64975) 2019-11-20 09:24:12 -05:00
meraki_webhooks
meta_tasks
module_defaults
module_precedence
module_tracebacks
module_utils
mongodb_parameter mongodb_parameter module integration tests (#61644) 2020-01-09 09:07:27 -05:00
mongodb_replicaset mongodb_replicaset/test: properly kill the nodes 2019-09-19 17:19:48 -04:00
mongodb_shard
mongodb_user mongodb_user module integration tests (#61257) 2020-01-09 09:22:45 -05:00
mount
mqtt
mso_label
mso_role
mso_site
mso_tenant
mso_user
mysql_db mysql_db: add master_data parameter (#66048) 2020-01-04 10:37:40 +00:00
mysql_info mysql_info: add return_empty_dbs parameter (#65755) 2019-12-12 14:10:52 +01:00
mysql_query mysql_query: new module (#65941) 2020-01-09 07:39:09 +01:00
mysql_replication Fix mysql_replication integration test for CentOS 8 (#64870) 2019-11-15 17:01:23 -05:00
mysql_user Don't return module error when mysql_connect fails (#64560) (#64585) 2019-12-06 11:22:34 +05:30
mysql_variables mysql_variables: add mode parameter (#63547) 2019-11-02 10:16:28 +01:00
netapp_eseries_alerts
netapp_eseries_asup
netapp_eseries_drive_firmware
netapp_eseries_firmware
netapp_eseries_global
netapp_eseries_host
netapp_eseries_iscsi_interface
netapp_eseries_iscsi_target
netapp_eseries_lun_mapping
netapp_eseries_storagepool
netapp_eseries_volume
netconf_config
netconf_get
netconf_rpc
nios_a_record
nios_aaaa_record
nios_cname_record
nios_dns_view
nios_host_record
nios_mx_record
nios_naptr_record
nios_network
nios_network_view
nios_ptr_record Bug fixes to the Infoblox NIOS modules (#58521) 2019-09-17 09:45:50 +05:30
nios_srv_record
nios_txt_record
nios_zone
no_log Properly mask no_log values is sub parameters during failure (#63405) 2019-10-14 09:20:07 -07:00
npm
nuage_vspk
nxos_aaa_server nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_aaa_server_host nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_acl nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_acl_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_banner nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_become nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_bfd_global nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_bfd_interfaces
nxos_bgp nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_bgp_af nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_bgp_neighbor nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_bgp_neighbor_af nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_command nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_config nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_devicealias adding the modules to /nxos/storage/ folder (#64269) 2019-12-16 14:44:33 +05:30
nxos_evpn_global nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_evpn_vni nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_facts nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_feature nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_file_copy nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_gir nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_gir_profile_management nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_hsrp nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_hsrp_interfaces nxos_hsrp_interfaces: new module (#61498) 2019-11-06 15:40:39 +05:30
nxos_igmp nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_igmp_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_igmp_snooping nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_install_os nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_interface_ospf nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_interfaces nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_l2_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_l2_interfaces nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_l3_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_l3_interfaces nxos_l3_interfaces: fix states, add new minor attributes (#64853) 2020-01-10 16:33:22 +05:30
nxos_lacp nxos_lacp: updated tests to handle platforms not supporting lacp system mac command (#64074) 2019-11-10 10:32:07 +05:30
nxos_lacp_interfaces nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_lag_interfaces nxos_lag_interfaces: fix regression tests (#64119) 2019-11-06 15:45:19 +05:30
nxos_linkagg nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_lldp nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_lldp_global nxos_lldp_global: fix regression tests (#64161) 2019-11-06 15:41:40 +05:30
nxos_logging nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_netconf Add filter option to netconf_config module (#63593) 2019-10-30 19:09:13 +05:30
nxos_ntp nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_ntp_auth nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_ntp_options nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_nxapi nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_nxapi_transports
nxos_ospf nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_ospf_vrf nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_overlay_global nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_pim nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_pim_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_pim_rp_address nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_reboot nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_rollback nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_rpm nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_smoke
nxos_snapshot nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_snmp_community nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_snmp_contact nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_snmp_host nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_snmp_location nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_snmp_traps nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_snmp_user nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_static_route nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_system nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_telemetry nxos_telemetry replaced state (#62368) 2019-09-17 16:49:30 +05:30
nxos_udld nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_udld_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_user nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vlan nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vlans nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vpc nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vpc_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vrf nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vrf_af nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vrf_interface nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vrrp nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vsan adding the modules to /nxos/storage/ folder (#64269) 2019-12-16 14:44:33 +05:30
nxos_vtp_domain nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vtp_password nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vtp_version nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vxlan_vtep nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_vxlan_vtep_vni nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068) 2020-01-08 13:43:23 +05:30
nxos_zone_zoneset adding the modules to /nxos/storage/ folder (#64269) 2019-12-16 14:44:33 +05:30
old_style_cache_plugins
old_style_modules_posix
omit
one_host
openssh_cert
openssh_keypair openssh_keypair - Add logic to handle password protected or broken key (#64436) 2019-12-02 08:12:38 +01:00
openssl_certificate openssl_csr and openssl_certificate: fix support for Ed25519 and Ed448 private keys (#63984) 2019-10-30 21:36:36 +01:00
openssl_certificate_info
openssl_csr openssl_csr and openssl_certificate: fix support for Ed25519 and Ed448 private keys (#63984) 2019-10-30 21:36:36 +01:00
openssl_csr_info
openssl_dhparam openssl_dhparam: add cryptography backend (#62991) 2019-10-04 21:53:04 +02:00
openssl_pkcs12
openssl_privatekey Fix bug in format handling. (#65642) 2019-12-09 18:56:15 +05:30
openssl_privatekey_info
openssl_publickey
openvswitch_bridge
openvswitch_db
order
osx_defaults
package
package_facts package_facts: check 'vital' and 'automated' values ('pkg' manager) (#62766) 2019-09-24 10:03:56 +02:00
parsing
patch
pause
pids
ping
pip Integration tests: prevent loop squashing (#63847) 2019-10-23 21:02:25 +02:00
plugin_filtering
plugin_loader
plugin_namespace
podman_container_info Add podman_container_info module (#64361) 2019-12-06 09:50:30 -05:00
podman_image
podman_image_info
podman_volume_info Add podman_volume_info module (#63380) 2019-10-31 16:17:33 -04:00
postgresql_copy Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_db postgresql_db: add executed_commands returned value (#65542) 2019-12-05 10:53:08 +01:00
postgresql_ext postgresql_ext: use query_params (#64994) 2019-12-02 13:32:25 +00:00
postgresql_idx PostgreSQL : Create unique index (#66157) 2020-01-04 10:38:17 +00:00
postgresql_info Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_lang Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_membership Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_owner postgresql_owner: use query_params with cursor (#65310) 2019-11-27 10:42:26 +00:00
postgresql_pg_hba Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_ping Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_privs Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_publication postgresql_publication: use query params with cursor object (#65404) 2019-12-05 10:44:45 +00:00
postgresql_query Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_schema Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_sequence postgresql_sequence: use query parameters with cursor object (#65787) 2019-12-14 09:46:27 +05:30
postgresql_set Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_slot postgresql modules: use query parameters with cursor objects (#65791) 2019-12-14 13:43:59 +05:30
postgresql_subscription Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_table Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_tablespace Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
postgresql_user Remove postgresql_shared integration test (#65133) 2019-11-22 09:30:10 -05:00
prepare_eos_tests/tasks
prepare_http_tests
prepare_ios_tests
prepare_iosxr_tests
prepare_junos_tests/tasks
prepare_nios_tests/tasks
prepare_nuage_tests/tasks
prepare_nxos_tests/tasks Use fact cache to make nxos tests faster (#65479) 2019-12-10 21:53:48 -05:00
prepare_ovs_tests/tasks
prepare_sros_tests/tasks
prepare_tests/tasks
prepare_vmware_tests vmware/test: more modular teardown.yml 2019-12-19 13:52:51 -05:00
prepare_vyos_tests/tasks vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
prepare_win_tests
psexec
pull
python_requirements_info
rabbitmq_binding
rabbitmq_lookup
rabbitmq_plugin
rabbitmq_publish
rabbitmq_user
rabbitmq_vhost
rabbitmq_vhost_limits
raw
rds_instance
rds_param_group
rds_subnet_group rds_subnet_group : Sanity Check fixes (docs) and Integration tests (#63214) 2019-10-23 08:27:07 -04:00
read_csv
reboot
redshift
rel_plugin_loading
remote_tmp Add method to automatically clean up after an action plugin (#65509) 2019-12-06 17:29:26 -05:00
replace
roles
route53 Update Route53 IAM policy so the Route53 tests run (#64886) 2019-11-18 08:48:58 -05:00
route53_zone
rpm_key
run_modules
s3_bucket s3_bucket: Allow empty encryption_key_id with aws:kms (#62031) 2019-10-21 19:45:41 -04:00
s3_bucket_notification
s3_lifecycle
s3_logging Integration tests for s3_logging (#63257) 2019-10-17 11:33:55 -07:00
scaleway_compute
scaleway_image_info
scaleway_ip
scaleway_ip_info
scaleway_lb
scaleway_organization_info
scaleway_s3
scaleway_security_group
scaleway_security_group_info
scaleway_security_group_rule
scaleway_server_info
scaleway_snapshot_info
scaleway_ssh
scaleway_user_data
scaleway_volume
scaleway_volume_info
script
seboolean
sefcontext
selinux
sensu_client
sensu_handler
service
service_facts
set_fact
setup_acme/tasks acme_certificate: add select_chain option (#60710) 2019-10-29 08:09:15 +01:00
setup_azure
setup_cron cronvar - use correct binary name (#63279) 2019-10-09 18:33:25 -04:00
setup_deb_repo
setup_docker Simplify docker_setup on Fedora. 2020-01-08 15:29:39 -08:00
setup_docker_registry Split up docker-registry test target. (#65211) 2019-12-04 14:14:43 -08:00
setup_ec2
setup_epel/tasks Fix iso_extract tests for CentOS 8 (#64861) 2019-11-15 17:37:13 -05:00
setup_flatpak_remote
setup_grafana Add integration tests for grafana_datasource module (#63986) 2019-10-29 22:39:38 +01:00
setup_influxdb/tasks
setup_mariadb Fix MariaDB integration tests for CentOS 8 (#64859) 2019-11-15 17:06:27 -05:00
setup_mongodb Add comment about not installing requests 2020-01-09 15:18:38 -08:00
setup_mosquitto
setup_mysql8 Fix setup_mysql8 tests for CentOS 8 (#64868) 2019-11-15 17:02:20 -05:00
setup_mysql_db Fix setup_mysql_db for CentOS 8 (#64864) 2019-11-15 17:04:35 -05:00
setup_mysql_replication Fix mysql_replication integration test for CentOS 8 (#64870) 2019-11-15 17:01:23 -05:00
setup_nobody
setup_opennebula/vars
setup_openssl crypto modules: fix various errors in argument specs (#65633) 2019-12-09 13:40:11 +01:00
setup_paramiko Fix paramiko_ssh test (#64857) 2019-11-15 17:08:26 -05:00
setup_passlib/tasks
setup_pexpect/tasks
setup_podman Make Docker and Podman play nice (#65009) 2019-11-18 15:08:58 -05:00
setup_postgresql_db Fix postgresql_lang integration test for CentOS 8 (#64872) 2019-11-18 10:45:22 -05:00
setup_postgresql_replication postgresql_subscription: new module (#63661) 2019-11-06 14:19:30 +00:00
setup_rabbitmq
setup_remote_constraints
setup_remote_tmp_dir
setup_rpm_repo Fix setup_rpm integration tests for CentOS 8 (#64862) 2019-11-15 17:07:48 -05:00
setup_ssh_keygen
setup_sshkey/tasks
setup_tls
setup_wildfly_server
setup_win_device
setup_win_psget
setup_zabbix re-enable zabbix_host integration tests and add cleanup handlers 2019-11-12 09:54:51 -08:00
shell
slurp
sns
sns_topic
special_vars Misc typo fixes (#66120) 2020-01-04 21:13:30 +05:30
sqs_queue
stat
strategy_linear
sts_assume_role Fix STS assume role error message when role does not exist (#63249) 2019-10-09 14:08:29 -07:00
subversion
supervisorctl
synchronize
synchronize-buildah
sysctl
systemd
tags
task_ordering
template
template_jinja2_latest
templating_settings
test_infra
tests Add new truthy and falsy jinja2 tests (#62602) 2019-10-02 13:58:28 -04:00
throttle
timezone Fix timezone integration test for Fedora 31 (#65013) 2019-11-18 15:06:38 -05:00
tower_common
tower_credential
tower_credential_type
tower_group
tower_host
tower_inventory
tower_inventory_source
tower_job_cancel
tower_job_launch
tower_job_list
tower_job_template
tower_job_wait
tower_label
tower_notification
tower_organization
tower_project
tower_receive
tower_role
tower_send
tower_settings
tower_team
tower_user
tower_workflow_launch
tower_workflow_template
ucs_disk_group_policy
ucs_dns_server
ucs_ip_pool
ucs_lan_connectivity
ucs_mac_pool
ucs_managed_objects
ucs_ntp_server
ucs_org
ucs_query
ucs_san_connectivity
ucs_service_profile_template
ucs_storage_profile
ucs_timezone
ucs_uuid_pool
ucs_vhba_template
ucs_vlans
ucs_vnic_template
ucs_vsans
ucs_wwn_pool
ufw ufw: add support for interface_in and interface_out (#65382) 2019-12-02 08:01:44 +01:00
unarchive Temporarily mark unarchive test unstable. 2020-01-10 18:31:14 -08:00
unicode
until
uri
user user - honor update_password parameter on BusyBox hosts (#65977) 2019-12-20 13:09:22 -05:00
var_blending
var_precedence
var_templating Use templating in HostVarsVars __repr__ (#64282) 2019-11-01 15:51:34 -04:00
vars_prompt Throw an error on unsupported vars_prompt keys (#65487) 2019-12-05 10:54:32 -05:00
vault Add ansible cli options --ask-vault-password and --vault-pass-file (#63782) 2019-12-19 12:07:25 -05:00
vcenter_folder vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vcenter_license vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
virt_net
vmware_about_facts vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_about_info vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_category vmware_category/test: ensure test can run on Zuul 2020-01-10 14:51:30 -05:00
vmware_cluster vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_cluster_drs vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_cluster_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_cluster_ha VMware: Add advanced settings to vmware_cluster_ha 2019-12-19 14:19:45 -05:00
vmware_cluster_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_cluster_vsan vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_content_deploy_template vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_content_library_info
vmware_content_library_manager vmware/test: use better name for datastores 2019-11-14 16:55:05 -05:00
vmware_datacenter vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_datastore_cluster vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_datastore_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_datastore_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_datastore_maintenancemode prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_drs_group prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_drs_group_facts vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_drs_group_info vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_drs_rule_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_drs_rule_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_dvs_portgroup vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_dvs_portgroup_facts vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_dvs_portgroup_find vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_dvs_portgroup_info vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_dvswitch vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_dvswitch_nioc vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_dvswitch_pvlans vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_dvswitch_uplink_pg vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_evc_mode vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_export_ovf vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_folder_info vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_guest vmware_guest/test: create test vm in correct directory 2020-01-08 13:20:47 -05:00
vmware_guest_boot_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_boot_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_controller prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_custom_attribute_defs prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_custom_attributes prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_customization_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_customization_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_disk vmware/test: use better name for datastores 2019-11-14 16:55:05 -05:00
vmware_guest_disk_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_disk_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_find prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_move prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_network prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_powerstate prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_register_operation prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_screenshot prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_sendkey prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_serial_port prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_snapshot prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_snapshot_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_snapshot_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_tools_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_guest_tools_wait prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host
vmware_host_acceptance prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_active_directory prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_auto_start vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_host_capability_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_capability_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_config_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_config_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_config_manager prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_datastore prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_dns VMware: New module vmware_host_dns (#64458) 2019-11-16 11:25:06 +05:30
vmware_host_dns_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_dns_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_feature_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_feature_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_firewall_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_firewall_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_firewall_manager vmware_host_firewall_manager: fix #61332 2019-10-28 13:01:02 -04:00
vmware_host_hyperthreading prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_ipv6
vmware_host_kernel_manager prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_ntp prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_ntp_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_ntp_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_package_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_package_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_powermgmt_policy
vmware_host_powerstate prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_scanhba prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_service_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_service_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_service_manager prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_snmp prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_ssl_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_ssl_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_vmhba_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_vmhba_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_vmnic_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_host_vmnic_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_inventory vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_local_role_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_local_role_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_local_role_manager vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_local_user_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_local_user_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_local_user_manager vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_maintenancemode prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_portgroup prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_portgroup_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_portgroup_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_resource_pool prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_resource_pool_facts vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_resource_pool_info vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_tag vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_target_canonical_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_target_canonical_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vcenter_settings vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_vcenter_statistics vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_vm_facts vmware_vm_info/test: drop dep on json_query 2020-01-10 14:50:01 -05:00
vmware_vm_host_drs_rule prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vm_info vmware_vm_info/test: drop dep on json_query 2020-01-10 14:50:01 -05:00
vmware_vm_storage_policy_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vm_vm_drs_rule prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vmkernel prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vmkernel_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vmkernel_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vmotion Fix issue 64503. Added pool to relocate spec (#64544) 2019-11-22 16:42:41 -05:00
vmware_vsan_health_info vmware/test: set vmware/scenario/vcenter_only alias (#65515) 2019-12-04 17:12:29 -05:00
vmware_vspan_session prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vswitch
vmware_vswitch_facts prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vmware_vswitch_info prepare_vmware_tests: add scenario with one ESXi 2019-12-19 11:30:00 -05:00
vsphere_file
vultr_account_info
vultr_block_storage
vultr_block_storage_info
vultr_dns_domain
vultr_dns_domain_info
vultr_dns_record
vultr_firewall_group
vultr_firewall_group_info
vultr_firewall_rule
vultr_network
vultr_network_info
vultr_os_info
vultr_plan_info
vultr_region_info
vultr_server
vultr_server_info
vultr_ssh_key
vultr_ssh_key_info
vultr_startup_script
vultr_startup_script_info
vultr_user
vultr_user_info
vyos_banner vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_command vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_config pre cleanup services (#66188) 2020-01-06 16:20:36 +05:30
vyos_facts vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_interface vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_interfaces vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_l3_interface vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_l3_interfaces vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_lag_interfaces vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_linkagg vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_lldp vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_lldp_global vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_lldp_interface vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_lldp_interfaces vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_logging vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_smoke vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_static_route vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_system vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_user vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
vyos_vlan vyos: Make vyos related yaml file passing yamllint (#65449) 2019-12-03 09:34:35 -05:00
wait_for
wait_for_connection
wakeonlan
want_json_modules_posix
win_acl
win_acl_inheritance
win_async_wrapper
win_audit_policy_system
win_audit_rule
win_auto_logon win_auto_logon - check, diff and store pass in LSA (#65528) 2019-12-05 11:24:30 +10:00
win_become become - stop using play context in more places (#62373) 2019-11-18 05:32:56 +10:00
win_certificate_info New Windows Module: win_certificate_info (#64035) 2019-12-17 12:43:03 +10:00
win_certificate_store
win_chocolatey Add --override-arguments option to win_chocolatey module (#65101) 2019-11-25 09:51:13 +10:00
win_chocolatey_config
win_chocolatey_facts
win_chocolatey_feature
win_chocolatey_source
win_command Add encoding and codepage params to win_command/win_shell (#54896) (#54966) 2019-11-12 15:58:57 +10:00
win_computer_description win_description Module (#61629) 2019-12-04 14:25:16 +10:00
win_copy
win_credential
win_csharp_utils Fix up deprecated_aliases spot for PS (#66326) 2020-01-10 11:44:15 +10:00
win_data_deduplication Win data deduplication module (#59723) 2019-12-04 14:21:21 +10:00
win_disk_facts win_disk_facts: Adds Win32_DiskDrive object to facts (#51595) 2019-11-15 15:45:18 +10:00
win_dns_client Correct win_dns_client test option name (#64967) 2019-11-18 07:39:25 +10:00
win_dns_record
win_domain_computer win_domain_computer module: Fix idempotence when name != sam_account_name (#56967) 2019-11-14 12:59:05 +10:00
win_domain_group
win_domain_membership
win_dotnet_ngen
win_dsc
win_environment
win_eventlog
win_eventlog_entry
win_exec_wrapper
win_feature
win_fetch
win_file
win_file_compression New Windows Module: win_file_compression (#56475) 2019-11-26 09:26:13 +10:00
win_find win_find - Refactor for better performance and alignment to find (#65536) 2019-12-06 10:01:11 +10:00
win_firewall
win_firewall_rule win_firewall_rule - support ICMP types and codes (#60361) 2019-11-14 11:32:01 +10:00
win_format win_format - Add allocation_unit_size (#56966) 2019-09-25 08:58:30 -04:00
win_get_url win_uri win_get_url - Fix up redirection defaults (#65584) 2019-12-06 11:47:35 +10:00
win_group
win_group_membership
win_hostname
win_hosts
win_hotfix
win_http_proxy
win_iis_webapplication win_iis_webapplication: add authentication parameters (#56033) 2019-11-15 16:04:19 +10:00
win_iis_webapppool
win_iis_webbinding
win_inet_proxy
win_initialize_disk add win_initialize_disk module (#58617) 2019-12-04 12:37:15 +10:00
win_lineinfile
win_mapped_drive
win_module_utils Add-Type - Added a way to reference assemblies by type name (#65866) 2019-12-17 09:06:54 +10:00
win_module_utils_legacy
win_msg
win_netbios
win_nssm
win_optional_feature
win_owner
win_package win_package - Use newer module wrapper as refactor baseline (#65586) 2019-12-06 13:37:52 +10:00
win_pagefile
win_partition
win_path
win_pester win_pester - Align dir scanning with Pester's defaults (#64880) 2019-11-15 13:53:30 +10:00
win_ping
win_power_plan
win_product_facts
win_psexec
win_psmodule
win_psrepository
win_rabbitmq_plugin
win_raw
win_rds
win_reboot
win_reg_stat
win_regedit
win_region
win_regmerge
win_route
win_say
win_scheduled_task
win_scheduled_task_stat
win_script
win_security_policy
win_service
win_setup
win_share win_share - Implement append paramtere for access rules (#59469) 2019-12-04 14:16:10 +10:00
win_shell Add encoding and codepage params to win_command/win_shell (#54896) (#54966) 2019-11-12 15:58:57 +10:00
win_shortcut
win_slurp
win_snmp
win_stat
win_tempfile
win_template
win_timezone
win_toast
win_unzip
win_updates
win_uri win_uri win_get_url - Fix up redirection defaults (#65584) 2019-12-06 11:47:35 +10:00
win_user
win_user_profile
win_user_right
win_wait_for
win_wait_for_process
win_wakeonlan
win_whoami
win_xml
windows-paths
xattr
xfs_quota
xml
yarn
yum Remove unstable from yum tests (#66218) 2020-01-06 16:35:09 -05:00
yum_repository Fix yum_repository tests for CentOS 8 (#64863) 2019-11-15 17:05:23 -05:00
zabbix_host Zabbix: Handle KeyError in zabbix_host module (#65392) 2019-12-16 13:32:11 +05:30
zabbix_template Zabbix: zabbix_template: fix #63907 and add test case (#65236) 2019-11-26 11:18:55 +00:00
zypper zypper: add additional flag --force-resolution (#61705) 2019-10-19 09:40:47 +02:00
zypper_repository