├── .gitignore ├── README.md ├── c2r.yml ├── centos_gpg_key_import.yml ├── collections ├── ansible_collections │ ├── amazon │ │ └── aws │ │ │ ├── .github │ │ │ ├── BOTMETA.yml │ │ │ └── settings.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.rst │ │ │ ├── CONTRIBUTING.md │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── changelogs │ │ │ ├── changelog.yaml │ │ │ ├── config.yaml │ │ │ └── fragments │ │ │ │ └── .keep │ │ │ ├── docs │ │ │ ├── amazon.aws.aws_account_attribute_lookup.rst │ │ │ ├── amazon.aws.aws_az_info_module.rst │ │ │ ├── amazon.aws.aws_caller_info_module.rst │ │ │ ├── amazon.aws.aws_ec2_inventory.rst │ │ │ ├── amazon.aws.aws_rds_inventory.rst │ │ │ ├── amazon.aws.aws_s3_module.rst │ │ │ ├── amazon.aws.aws_secret_lookup.rst │ │ │ ├── amazon.aws.aws_service_ip_ranges_lookup.rst │ │ │ ├── amazon.aws.aws_ssm_lookup.rst │ │ │ ├── amazon.aws.cloudformation_info_module.rst │ │ │ ├── amazon.aws.cloudformation_module.rst │ │ │ ├── amazon.aws.ec2_ami_info_module.rst │ │ │ ├── amazon.aws.ec2_ami_module.rst │ │ │ ├── amazon.aws.ec2_elb_lb_module.rst │ │ │ ├── amazon.aws.ec2_eni_info_module.rst │ │ │ ├── amazon.aws.ec2_eni_module.rst │ │ │ ├── amazon.aws.ec2_group_info_module.rst │ │ │ ├── amazon.aws.ec2_group_module.rst │ │ │ ├── amazon.aws.ec2_key_module.rst │ │ │ ├── amazon.aws.ec2_metadata_facts_module.rst │ │ │ ├── amazon.aws.ec2_module.rst │ │ │ ├── amazon.aws.ec2_snapshot_info_module.rst │ │ │ ├── amazon.aws.ec2_snapshot_module.rst │ │ │ ├── amazon.aws.ec2_tag_info_module.rst │ │ │ ├── amazon.aws.ec2_tag_module.rst │ │ │ ├── amazon.aws.ec2_vol_info_module.rst │ │ │ ├── amazon.aws.ec2_vol_module.rst │ │ │ ├── amazon.aws.ec2_vpc_dhcp_option_info_module.rst │ │ │ ├── amazon.aws.ec2_vpc_dhcp_option_module.rst │ │ │ ├── amazon.aws.ec2_vpc_net_info_module.rst │ │ │ ├── amazon.aws.ec2_vpc_net_module.rst │ │ │ ├── amazon.aws.ec2_vpc_subnet_info_module.rst │ │ │ ├── amazon.aws.ec2_vpc_subnet_module.rst │ │ │ └── amazon.aws.s3_bucket_module.rst │ │ │ ├── galaxy.yml │ │ │ ├── meta │ │ │ └── runtime.yml │ │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── action │ │ │ │ ├── __init__.py │ │ │ │ └── aws_s3.py │ │ │ ├── callback │ │ │ │ ├── __init__.py │ │ │ │ └── aws_resource_actions.py │ │ │ ├── doc_fragments │ │ │ │ ├── __init__.py │ │ │ │ ├── aws.py │ │ │ │ ├── aws_credentials.py │ │ │ │ ├── aws_region.py │ │ │ │ └── ec2.py │ │ │ ├── inventory │ │ │ │ ├── __init__.py │ │ │ │ ├── aws_ec2.py │ │ │ │ └── aws_rds.py │ │ │ ├── lookup │ │ │ │ ├── __init__.py │ │ │ │ ├── aws_account_attribute.py │ │ │ │ ├── aws_secret.py │ │ │ │ ├── aws_service_ip_ranges.py │ │ │ │ └── aws_ssm.py │ │ │ ├── module_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── acm.py │ │ │ │ ├── batch.py │ │ │ │ ├── cloud.py │ │ │ │ ├── cloudfront_facts.py │ │ │ │ ├── compat │ │ │ │ │ └── _ipaddress.py │ │ │ │ ├── core.py │ │ │ │ ├── direct_connect.py │ │ │ │ ├── ec2.py │ │ │ │ ├── elb_utils.py │ │ │ │ ├── elbv2.py │ │ │ │ ├── iam.py │ │ │ │ ├── rds.py │ │ │ │ ├── s3.py │ │ │ │ ├── urls.py │ │ │ │ ├── waf.py │ │ │ │ └── waiters.py │ │ │ └── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── aws_az_facts.py │ │ │ │ ├── aws_az_info.py │ │ │ │ ├── aws_caller_facts.py │ │ │ │ ├── aws_caller_info.py │ │ │ │ ├── aws_s3.py │ │ │ │ ├── cloudformation.py │ │ │ │ ├── cloudformation_facts.py │ │ │ │ ├── cloudformation_info.py │ │ │ │ ├── ec2.py │ │ │ │ ├── ec2_ami.py │ │ │ │ ├── ec2_ami_facts.py │ │ │ │ ├── ec2_ami_info.py │ │ │ │ ├── ec2_elb_lb.py │ │ │ │ ├── ec2_eni.py │ │ │ │ ├── ec2_eni_facts.py │ │ │ │ ├── ec2_eni_info.py │ │ │ │ ├── ec2_group.py │ │ │ │ ├── ec2_group_facts.py │ │ │ │ ├── ec2_group_info.py │ │ │ │ ├── ec2_key.py │ │ │ │ ├── ec2_metadata_facts.py │ │ │ │ ├── ec2_snapshot.py │ │ │ │ ├── ec2_snapshot_facts.py │ │ │ │ ├── ec2_snapshot_info.py │ │ │ │ ├── ec2_tag.py │ │ │ │ ├── ec2_tag_info.py │ │ │ │ ├── ec2_vol.py │ │ │ │ ├── ec2_vol_facts.py │ │ │ │ ├── ec2_vol_info.py │ │ │ │ ├── ec2_vpc_dhcp_option.py │ │ │ │ ├── ec2_vpc_dhcp_option_facts.py │ │ │ │ ├── ec2_vpc_dhcp_option_info.py │ │ │ │ ├── ec2_vpc_net.py │ │ │ │ ├── ec2_vpc_net_facts.py │ │ │ │ ├── ec2_vpc_net_info.py │ │ │ │ ├── ec2_vpc_subnet.py │ │ │ │ ├── ec2_vpc_subnet_facts.py │ │ │ │ ├── ec2_vpc_subnet_info.py │ │ │ │ └── s3_bucket.py │ │ │ ├── requirements.txt │ │ │ ├── shippable.yml │ │ │ ├── test-requirements.txt │ │ │ └── tests │ │ │ ├── .gitignore │ │ │ ├── integration │ │ │ ├── requirements.txt │ │ │ └── targets │ │ │ │ ├── aws_az_info │ │ │ │ ├── aliases │ │ │ │ ├── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── main.yml │ │ │ │ │ └── tests.yml │ │ │ │ ├── aws_caller_info │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ │ ├── aws_s3 │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── test.png │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ │ └── put-template.txt.j2 │ │ │ │ ├── cloudformation │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── cf_template.json │ │ │ │ │ └── update_policy.json │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2 │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_ami │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_elb_lb │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_eni │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── main.yaml │ │ │ │ │ ├── test_attachment.yaml │ │ │ │ │ ├── test_deletion.yaml │ │ │ │ │ ├── test_eni_basic_creation.yaml │ │ │ │ │ ├── test_ipaddress_assign.yaml │ │ │ │ │ ├── test_modifying_delete_on_termination.yaml │ │ │ │ │ ├── test_modifying_source_dest_check.yaml │ │ │ │ │ └── test_modifying_tags.yaml │ │ │ │ ├── ec2_group │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── credential_tests.yml │ │ │ │ │ ├── data_validation.yml │ │ │ │ │ ├── diff_mode.yml │ │ │ │ │ ├── ec2_classic.yml │ │ │ │ │ ├── egress_tests.yml │ │ │ │ │ ├── group_info.yml │ │ │ │ │ ├── ipv6_default_tests.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── multi_account.yml │ │ │ │ │ ├── multi_nested_target.yml │ │ │ │ │ ├── numeric_protos.yml │ │ │ │ │ └── rule_group_create.yml │ │ │ │ ├── ec2_key │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_metadata_facts │ │ │ │ ├── aliases │ │ │ │ ├── playbooks │ │ │ │ │ ├── setup.yml │ │ │ │ │ ├── teardown.yml │ │ │ │ │ └── test_metadata.yml │ │ │ │ ├── runme.sh │ │ │ │ └── templates │ │ │ │ │ └── inventory.j2 │ │ │ │ ├── ec2_snapshot │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_tag │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vol │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── main.yml │ │ │ │ │ └── tests.yml │ │ │ │ ├── ec2_vpc_dhcp_option │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_net │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_subnet │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── inventory_aws_ec2 │ │ │ │ ├── aliases │ │ │ │ ├── playbooks │ │ │ │ │ ├── create_environment_script.yml │ │ │ │ │ ├── create_inventory_config.yml │ │ │ │ │ ├── empty_inventory_config.yml │ │ │ │ │ ├── populate_cache.yml │ │ │ │ │ ├── setup.yml │ │ │ │ │ ├── tear_down.yml │ │ │ │ │ ├── test_invalid_aws_ec2_inventory_config.yml │ │ │ │ │ ├── test_inventory_cache.yml │ │ │ │ │ ├── test_populating_inventory.yml │ │ │ │ │ ├── test_populating_inventory_with_concatenation.yml │ │ │ │ │ ├── test_populating_inventory_with_constructed.yml │ │ │ │ │ ├── test_populating_inventory_with_include_or_exclude_filters.yml │ │ │ │ │ ├── test_populating_inventory_with_use_contrib_script_keys.yml │ │ │ │ │ └── test_refresh_inventory.yml │ │ │ │ ├── runme.sh │ │ │ │ ├── templates │ │ │ │ │ ├── inventory.yml.j2 │ │ │ │ │ ├── inventory_with_cache.yml.j2 │ │ │ │ │ ├── inventory_with_concatenation.yml.j2 │ │ │ │ │ ├── inventory_with_constructed.yml.j2 │ │ │ │ │ ├── inventory_with_include_or_exclude_filters.yml.j2 │ │ │ │ │ ├── inventory_with_template.yml.j2 │ │ │ │ │ └── inventory_with_use_contrib_script_keys.yml.j2 │ │ │ │ └── test.aws_ec2.yml │ │ │ │ ├── inventory_aws_rds │ │ │ │ ├── aliases │ │ │ │ ├── playbooks │ │ │ │ │ ├── create_inventory_config.yml │ │ │ │ │ ├── empty_inventory_config.yml │ │ │ │ │ ├── populate_cache.yml │ │ │ │ │ ├── test_invalid_aws_rds_inventory_config.yml │ │ │ │ │ ├── test_inventory_cache.yml │ │ │ │ │ ├── test_populating_inventory.yml │ │ │ │ │ ├── test_populating_inventory_with_constructed.yml │ │ │ │ │ └── test_refresh_inventory.yml │ │ │ │ ├── runme.sh │ │ │ │ ├── templates │ │ │ │ │ ├── inventory.j2 │ │ │ │ │ ├── inventory_with_cache.j2 │ │ │ │ │ └── inventory_with_constructed.j2 │ │ │ │ └── test.aws_rds.yml │ │ │ │ ├── lookup_aws_account_attribute │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ │ ├── module_utils_core │ │ │ │ ├── aliases │ │ │ │ ├── inventory │ │ │ │ ├── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── roles │ │ │ │ │ └── ansibleawsmodule.client │ │ │ │ │ │ ├── files │ │ │ │ │ │ ├── amazonroot.pem │ │ │ │ │ │ └── isrg-x1.pem │ │ │ │ │ │ ├── library │ │ │ │ │ │ └── example_module.py │ │ │ │ │ │ ├── meta │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── ca_bundle.yml │ │ │ │ │ │ ├── credentials.yml │ │ │ │ │ │ ├── endpoints.yml │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ └── profiles.yml │ │ │ │ ├── runme.sh │ │ │ │ ├── setup.yml │ │ │ │ └── templates │ │ │ │ │ ├── boto_config.j2 │ │ │ │ │ └── session_credentials.yml.j2 │ │ │ │ ├── module_utils_ec2 │ │ │ │ ├── aliases │ │ │ │ ├── connect_to_aws.yml │ │ │ │ ├── ec2_connect.yml │ │ │ │ ├── inventory │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── roles │ │ │ │ │ ├── connect_to_aws │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── amazonroot.pem │ │ │ │ │ │ │ └── isrg-x1.pem │ │ │ │ │ │ ├── library │ │ │ │ │ │ │ └── example_module.py │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ ├── credentials.yml │ │ │ │ │ │ │ ├── endpoints.yml │ │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ │ └── profiles.yml │ │ │ │ │ └── ec2_connect │ │ │ │ │ │ ├── files │ │ │ │ │ │ ├── amazonroot.pem │ │ │ │ │ │ └── isrg-x1.pem │ │ │ │ │ │ ├── library │ │ │ │ │ │ └── example_module.py │ │ │ │ │ │ ├── meta │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── credentials.yml │ │ │ │ │ │ ├── endpoints.yml │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ └── profiles.yml │ │ │ │ ├── runme.sh │ │ │ │ ├── setup.yml │ │ │ │ └── templates │ │ │ │ │ ├── boto_config.j2 │ │ │ │ │ └── session_credentials.yml.j2 │ │ │ │ ├── module_utils_waiter │ │ │ │ ├── aliases │ │ │ │ ├── inventory │ │ │ │ ├── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── roles │ │ │ │ │ └── get_waiter │ │ │ │ │ │ ├── library │ │ │ │ │ │ └── example_module.py │ │ │ │ │ │ ├── meta │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ └── runme.sh │ │ │ │ ├── prepare_tests │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── s3_bucket │ │ │ │ ├── aliases │ │ │ │ ├── inventory │ │ │ │ ├── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── roles │ │ │ │ │ └── s3_bucket │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── meta │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ ├── complex.yml │ │ │ │ │ │ ├── dotted.yml │ │ │ │ │ │ ├── encryption_kms.yml │ │ │ │ │ │ ├── encryption_sse.yml │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ ├── missing.yml │ │ │ │ │ │ ├── public_access.yml │ │ │ │ │ │ ├── simple.yml │ │ │ │ │ │ └── tags.yml │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── policy-updated.json │ │ │ │ │ │ └── policy.json │ │ │ │ └── runme.sh │ │ │ │ ├── setup_ec2 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── common.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── setup_remote_tmp_dir │ │ │ │ ├── handlers │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── default-cleanup.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── windows-cleanup.yml │ │ │ │ │ └── windows.yml │ │ │ │ └── setup_sshkey │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ │ ├── requirements.yml │ │ │ ├── sanity │ │ │ ├── ignore-2.10.txt │ │ │ ├── ignore-2.11.txt │ │ │ ├── ignore-2.12.txt │ │ │ └── ignore-2.9.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 │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── core │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ansible_aws_module │ │ │ │ │ │ └── test_fail_json_aws.py │ │ │ │ │ ├── test_is_boto3_error_code.py │ │ │ │ │ ├── test_is_boto3_error_message.py │ │ │ │ │ ├── test_normalize_boto3_result.py │ │ │ │ │ └── test_scrub_none_parameters.py │ │ │ │ ├── ec2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_aws.py │ │ │ │ │ └── test_compare_policies.py │ │ │ │ ├── test_ec2.py │ │ │ │ ├── test_elbv2.py │ │ │ │ └── test_iam.py │ │ │ ├── plugins │ │ │ │ ├── __init__.py │ │ │ │ ├── inventory │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_aws_ec2.py │ │ │ │ ├── lookup │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── avi.json │ │ │ │ │ ├── test_aws_secret.py │ │ │ │ │ └── test_aws_ssm.py │ │ │ │ └── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── certs │ │ │ │ │ │ ├── a.pem │ │ │ │ │ │ ├── b.pem │ │ │ │ │ │ ├── chain-1.0.cert │ │ │ │ │ │ ├── chain-1.1.cert │ │ │ │ │ │ ├── chain-1.2.cert │ │ │ │ │ │ ├── chain-1.3.cert │ │ │ │ │ │ ├── chain-1.4.cert │ │ │ │ │ │ ├── chain-4.cert │ │ │ │ │ │ ├── simple-chain-a.cert │ │ │ │ │ │ └── simple-chain-b.cert │ │ │ │ │ └── thezip.zip │ │ │ │ │ ├── placebo_recordings │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── cloudformation │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── basic_s3_stack │ │ │ │ │ │ ├── cloudformation.CreateStack_1.json │ │ │ │ │ │ ├── cloudformation.DeleteStack_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_2.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_3.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_4.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_5.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_6.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_7.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_2.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_3.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_4.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_5.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_6.json │ │ │ │ │ │ └── cloudformation.DescribeStacks_7.json │ │ │ │ │ │ ├── client_request_token_s3_stack │ │ │ │ │ │ ├── cloudformation.CreateStack_1.json │ │ │ │ │ │ ├── cloudformation.DeleteStack_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_2.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_3.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_4.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_5.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_6.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_7.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_2.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_3.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_4.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_5.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_6.json │ │ │ │ │ │ └── cloudformation.DescribeStacks_7.json │ │ │ │ │ │ ├── delete_nonexistent_stack │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_2.json │ │ │ │ │ │ └── cloudformation.DescribeStacks_1.json │ │ │ │ │ │ ├── get_nonexistent_stack │ │ │ │ │ │ └── cloudformation.DescribeStacks_1.json │ │ │ │ │ │ ├── invalid_template_json │ │ │ │ │ │ └── cloudformation.CreateStack_1.json │ │ │ │ │ │ ├── on_create_failure_delete │ │ │ │ │ │ ├── cloudformation.CreateStack_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_2.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_3.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_4.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_5.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_2.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_3.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_4.json │ │ │ │ │ │ └── cloudformation.DescribeStacks_5.json │ │ │ │ │ │ ├── on_create_failure_do_nothing │ │ │ │ │ │ ├── cloudformation.CreateStack_1.json │ │ │ │ │ │ ├── cloudformation.DeleteStack_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_2.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_1.json │ │ │ │ │ │ └── cloudformation.DescribeStacks_2.json │ │ │ │ │ │ └── on_create_failure_rollback │ │ │ │ │ │ ├── cloudformation.CreateStack_1.json │ │ │ │ │ │ ├── cloudformation.DeleteStack_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_2.json │ │ │ │ │ │ ├── cloudformation.DescribeStackEvents_3.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_1.json │ │ │ │ │ │ ├── cloudformation.DescribeStacks_2.json │ │ │ │ │ │ └── cloudformation.DescribeStacks_3.json │ │ │ │ │ ├── test_aws_s3.py │ │ │ │ │ ├── test_cloudformation.py │ │ │ │ │ ├── test_ec2_group.py │ │ │ │ │ └── utils.py │ │ │ ├── requirements.txt │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ └── amazon_placebo_fixtures.py │ │ │ └── utils │ │ │ └── shippable │ │ │ ├── aws.sh │ │ │ ├── check_matrix.py │ │ │ ├── sanity.sh │ │ │ ├── shippable.sh │ │ │ ├── timing.py │ │ │ ├── timing.sh │ │ │ └── units.sh │ ├── ansible │ │ ├── netcommon │ │ │ ├── .gitignore │ │ │ ├── .yamllint │ │ │ ├── FILES.json │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.json │ │ │ ├── README.md │ │ │ ├── bindep.txt │ │ │ ├── docs │ │ │ │ ├── ansible.netcommon.cli_command_module.rst │ │ │ │ ├── ansible.netcommon.cli_config_module.rst │ │ │ │ ├── ansible.netcommon.default_netconf.rst │ │ │ │ ├── ansible.netcommon.enable_become.rst │ │ │ │ ├── ansible.netcommon.httpapi_connection.rst │ │ │ │ ├── ansible.netcommon.napalm_connection.rst │ │ │ │ ├── ansible.netcommon.net_banner_module.rst │ │ │ │ ├── ansible.netcommon.net_get_module.rst │ │ │ │ ├── ansible.netcommon.net_interface_module.rst │ │ │ │ ├── ansible.netcommon.net_l2_interface_module.rst │ │ │ │ ├── ansible.netcommon.net_l3_interface_module.rst │ │ │ │ ├── ansible.netcommon.net_linkagg_module.rst │ │ │ │ ├── ansible.netcommon.net_lldp_interface_module.rst │ │ │ │ ├── ansible.netcommon.net_lldp_module.rst │ │ │ │ ├── ansible.netcommon.net_logging_module.rst │ │ │ │ ├── ansible.netcommon.net_ping_module.rst │ │ │ │ ├── ansible.netcommon.net_put_module.rst │ │ │ │ ├── ansible.netcommon.net_static_route_module.rst │ │ │ │ ├── ansible.netcommon.net_system_module.rst │ │ │ │ ├── ansible.netcommon.net_user_module.rst │ │ │ │ ├── ansible.netcommon.net_vlan_module.rst │ │ │ │ ├── ansible.netcommon.net_vrf_module.rst │ │ │ │ ├── ansible.netcommon.netconf_config_module.rst │ │ │ │ ├── ansible.netcommon.netconf_connection.rst │ │ │ │ ├── ansible.netcommon.netconf_get_module.rst │ │ │ │ ├── ansible.netcommon.netconf_rpc_module.rst │ │ │ │ ├── ansible.netcommon.network_cli_connection.rst │ │ │ │ ├── ansible.netcommon.persistent_connection.rst │ │ │ │ ├── ansible.netcommon.restconf_config_module.rst │ │ │ │ ├── ansible.netcommon.restconf_get_module.rst │ │ │ │ ├── ansible.netcommon.restconf_httpapi.rst │ │ │ │ └── ansible.netcommon.telnet_module.rst │ │ │ ├── meta │ │ │ │ └── runtime.yml │ │ │ ├── plugins │ │ │ │ ├── action │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cli_command.py │ │ │ │ │ ├── cli_config.py │ │ │ │ │ ├── net_banner.py │ │ │ │ │ ├── net_base.py │ │ │ │ │ ├── net_get.py │ │ │ │ │ ├── net_interface.py │ │ │ │ │ ├── net_l2_interface.py │ │ │ │ │ ├── net_l3_interface.py │ │ │ │ │ ├── net_linkagg.py │ │ │ │ │ ├── net_lldp.py │ │ │ │ │ ├── net_lldp_interface.py │ │ │ │ │ ├── net_logging.py │ │ │ │ │ ├── net_ping.py │ │ │ │ │ ├── net_put.py │ │ │ │ │ ├── net_static_route.py │ │ │ │ │ ├── net_system.py │ │ │ │ │ ├── net_user.py │ │ │ │ │ ├── net_vlan.py │ │ │ │ │ ├── net_vrf.py │ │ │ │ │ ├── netconf.py │ │ │ │ │ ├── network.py │ │ │ │ │ └── telnet.py │ │ │ │ ├── become │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── enable.py │ │ │ │ ├── connection │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── httpapi.py │ │ │ │ │ ├── napalm.py │ │ │ │ │ ├── netconf.py │ │ │ │ │ ├── network_cli.py │ │ │ │ │ └── persistent.py │ │ │ │ ├── doc_fragments │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── netconf.py │ │ │ │ │ └── network_agnostic.py │ │ │ │ ├── filter │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ipaddr.py │ │ │ │ │ └── network.py │ │ │ │ ├── httpapi │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── restconf.py │ │ │ │ ├── module_utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat │ │ │ │ │ │ └── ipaddress.py │ │ │ │ │ └── network │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── cfg │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── base.py │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ ├── facts │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── facts.py │ │ │ │ │ │ ├── netconf.py │ │ │ │ │ │ ├── network.py │ │ │ │ │ │ ├── network_template.py │ │ │ │ │ │ ├── parsing.py │ │ │ │ │ │ ├── resource_module.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ ├── netconf │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── netconf.py │ │ │ │ │ │ └── restconf │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── restconf.py │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cli_command.py │ │ │ │ │ ├── cli_config.py │ │ │ │ │ ├── net_banner.py │ │ │ │ │ ├── net_get.py │ │ │ │ │ ├── net_interface.py │ │ │ │ │ ├── net_l2_interface.py │ │ │ │ │ ├── net_l3_interface.py │ │ │ │ │ ├── net_linkagg.py │ │ │ │ │ ├── net_lldp.py │ │ │ │ │ ├── net_lldp_interface.py │ │ │ │ │ ├── net_logging.py │ │ │ │ │ ├── net_ping.py │ │ │ │ │ ├── net_put.py │ │ │ │ │ ├── net_static_route.py │ │ │ │ │ ├── net_system.py │ │ │ │ │ ├── net_user.py │ │ │ │ │ ├── net_vlan.py │ │ │ │ │ ├── net_vrf.py │ │ │ │ │ ├── netconf_config.py │ │ │ │ │ ├── netconf_get.py │ │ │ │ │ ├── netconf_rpc.py │ │ │ │ │ ├── restconf_config.py │ │ │ │ │ ├── restconf_get.py │ │ │ │ │ └── telnet.py │ │ │ │ └── netconf │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── default.py │ │ │ ├── requirements.txt │ │ │ ├── test-requirements.txt │ │ │ ├── tests │ │ │ │ ├── .gitignore │ │ │ │ ├── integration │ │ │ │ │ ├── target-prefixes.network │ │ │ │ │ └── targets │ │ │ │ │ │ ├── netconf_config │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ ├── iosxr.yaml │ │ │ │ │ │ │ ├── junos.yaml │ │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── iosxr │ │ │ │ │ │ │ └── basic.yaml │ │ │ │ │ │ │ └── junos │ │ │ │ │ │ │ ├── basic.yaml │ │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ ├── netconf_get │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ ├── iosxr.yaml │ │ │ │ │ │ │ ├── junos.yaml │ │ │ │ │ │ │ ├── main.yaml │ │ │ │ │ │ │ └── sros.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── iosxr │ │ │ │ │ │ │ └── basic.yaml │ │ │ │ │ │ │ ├── junos │ │ │ │ │ │ │ └── basic.yaml │ │ │ │ │ │ │ └── sros │ │ │ │ │ │ │ └── basic.yaml │ │ │ │ │ │ ├── netconf_rpc │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ │ └── main.yaml │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ ├── iosxr.yaml │ │ │ │ │ │ │ ├── junos.yaml │ │ │ │ │ │ │ ├── main.yaml │ │ │ │ │ │ │ └── sros.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── iosxr │ │ │ │ │ │ │ └── basic.yaml │ │ │ │ │ │ │ ├── junos │ │ │ │ │ │ │ └── basic.yaml │ │ │ │ │ │ │ └── sros │ │ │ │ │ │ │ └── basic.yaml │ │ │ │ │ │ ├── prepare_iosxr_tests │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── config.j2 │ │ │ │ │ │ ├── prepare_junos_tests │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── prepare_sros_tests │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ ├── sanity │ │ │ │ │ ├── ignore-2.10.txt │ │ │ │ │ ├── ignore-2.9.txt │ │ │ │ │ └── requirements.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 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ └── network │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_parsing.py │ │ │ │ │ │ └── test_utils.py │ │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── network │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── cli │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cli_module.py │ │ │ │ │ │ │ └── test_cli_config.py │ │ │ │ │ └── utils.py │ │ │ │ │ ├── plugins │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_netconf.py │ │ │ │ │ │ └── test_network_cli.py │ │ │ │ │ └── filter │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── network │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── show_vlans_xml_output.txt │ │ │ │ │ │ │ ├── show_vlans_xml_single_value_spec.yml │ │ │ │ │ │ │ ├── show_vlans_xml_spec.yml │ │ │ │ │ │ │ ├── show_vlans_xml_with_condition_spec.yml │ │ │ │ │ │ │ └── show_vlans_xml_with_key_spec.yml │ │ │ │ │ │ ├── test_ipaddr.py │ │ │ │ │ │ └── test_network.py │ │ │ │ │ └── requirements.txt │ │ │ └── tox.ini │ │ └── tower │ │ │ ├── COPYING │ │ │ ├── FILES.json │ │ │ ├── MANIFEST.json │ │ │ ├── README.md │ │ │ ├── TESTING.md │ │ │ ├── images │ │ │ └── completeness_test_output.png │ │ │ ├── meta │ │ │ └── runtime.yml │ │ │ ├── plugins │ │ │ ├── doc_fragments │ │ │ │ ├── auth.py │ │ │ │ ├── auth_legacy.py │ │ │ │ └── auth_plugin.py │ │ │ ├── inventory │ │ │ │ └── tower.py │ │ │ ├── lookup │ │ │ │ ├── tower_api.py │ │ │ │ └── tower_schedule_rrule.py │ │ │ ├── module_utils │ │ │ │ ├── tower_api.py │ │ │ │ ├── tower_awxkit.py │ │ │ │ ├── tower_legacy.py │ │ │ │ └── tower_module.py │ │ │ └── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── tower_ad_hoc_command.py │ │ │ │ ├── tower_ad_hoc_command_cancel.py │ │ │ │ ├── tower_ad_hoc_command_wait.py │ │ │ │ ├── tower_application.py │ │ │ │ ├── tower_credential.py │ │ │ │ ├── tower_credential_input_source.py │ │ │ │ ├── tower_credential_type.py │ │ │ │ ├── tower_export.py │ │ │ │ ├── tower_group.py │ │ │ │ ├── tower_host.py │ │ │ │ ├── tower_import.py │ │ │ │ ├── tower_instance_group.py │ │ │ │ ├── tower_inventory.py │ │ │ │ ├── tower_inventory_source.py │ │ │ │ ├── tower_inventory_source_update.py │ │ │ │ ├── tower_job_cancel.py │ │ │ │ ├── tower_job_launch.py │ │ │ │ ├── tower_job_list.py │ │ │ │ ├── tower_job_template.py │ │ │ │ ├── tower_job_wait.py │ │ │ │ ├── tower_label.py │ │ │ │ ├── tower_license.py │ │ │ │ ├── tower_meta.py │ │ │ │ ├── tower_notification_template.py │ │ │ │ ├── tower_organization.py │ │ │ │ ├── tower_project.py │ │ │ │ ├── tower_project_update.py │ │ │ │ ├── tower_receive.py │ │ │ │ ├── tower_role.py │ │ │ │ ├── tower_schedule.py │ │ │ │ ├── tower_send.py │ │ │ │ ├── tower_settings.py │ │ │ │ ├── tower_team.py │ │ │ │ ├── tower_token.py │ │ │ │ ├── tower_user.py │ │ │ │ ├── tower_workflow_job_template.py │ │ │ │ ├── tower_workflow_job_template_node.py │ │ │ │ ├── tower_workflow_launch.py │ │ │ │ └── tower_workflow_template.py │ │ │ ├── requirements.txt │ │ │ ├── test │ │ │ └── awx │ │ │ │ ├── conftest.py │ │ │ │ ├── test_ad_hoc_wait.py │ │ │ │ ├── test_application.py │ │ │ │ ├── test_completeness.py │ │ │ │ ├── test_credential.py │ │ │ │ ├── test_credential_input_source.py │ │ │ │ ├── test_credential_type.py │ │ │ │ ├── test_group.py │ │ │ │ ├── test_instance_group.py │ │ │ │ ├── test_inventory.py │ │ │ │ ├── test_inventory_source.py │ │ │ │ ├── test_job.py │ │ │ │ ├── test_job_template.py │ │ │ │ ├── test_label.py │ │ │ │ ├── test_module_utils.py │ │ │ │ ├── test_notification_template.py │ │ │ │ ├── test_organization.py │ │ │ │ ├── test_project.py │ │ │ │ ├── test_role.py │ │ │ │ ├── test_schedule.py │ │ │ │ ├── test_send_receive.py │ │ │ │ ├── test_settings.py │ │ │ │ ├── test_team.py │ │ │ │ ├── test_token.py │ │ │ │ ├── test_user.py │ │ │ │ ├── test_workflow_job_template.py │ │ │ │ ├── test_workflow_job_template_node.py │ │ │ │ └── test_workflow_template.py │ │ │ └── tests │ │ │ ├── integration │ │ │ └── targets │ │ │ │ ├── demo_data │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_ad_hoc_command │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_ad_hoc_command_cancel │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_ad_hoc_command_wait │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_application │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_credential │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_credential_input_source │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_credential_type │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_export │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_group │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_host │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_import │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_instance_group │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_inventory │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_inventory_source │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_inventory_source_update │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_job_cancel │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_job_launch │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_job_list │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_job_template │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_job_wait │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_label │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_lookup_api_plugin │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_notification_template │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_organization │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_project │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_project_manual │ │ │ │ └── tasks │ │ │ │ │ ├── create_project_dir.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_project_update │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_role │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_schedule │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_schedule_rrule │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_settings │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_team │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_token │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_user │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── tower_workflow_job_template │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── tower_workflow_launch │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ │ └── sanity │ │ │ ├── ignore-2.10.txt │ │ │ └── ignore-2.9.txt │ ├── awx │ │ └── awx │ │ │ ├── COPYING │ │ │ ├── FILES.json │ │ │ ├── MANIFEST.json │ │ │ ├── README.md │ │ │ ├── TESTING.md │ │ │ ├── images │ │ │ └── completeness_test_output.png │ │ │ ├── meta │ │ │ └── runtime.yml │ │ │ ├── plugins │ │ │ ├── doc_fragments │ │ │ │ ├── auth.py │ │ │ │ ├── auth_legacy.py │ │ │ │ └── auth_plugin.py │ │ │ ├── inventory │ │ │ │ └── tower.py │ │ │ ├── lookup │ │ │ │ ├── tower_api.py │ │ │ │ └── tower_schedule_rrule.py │ │ │ ├── module_utils │ │ │ │ ├── tower_api.py │ │ │ │ ├── tower_awxkit.py │ │ │ │ ├── tower_legacy.py │ │ │ │ └── tower_module.py │ │ │ └── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── tower_ad_hoc_command.py │ │ │ │ ├── tower_ad_hoc_command_cancel.py │ │ │ │ ├── tower_ad_hoc_command_wait.py │ │ │ │ ├── tower_application.py │ │ │ │ ├── tower_credential.py │ │ │ │ ├── tower_credential_input_source.py │ │ │ │ ├── tower_credential_type.py │ │ │ │ ├── tower_export.py │ │ │ │ ├── tower_group.py │ │ │ │ ├── tower_host.py │ │ │ │ ├── tower_import.py │ │ │ │ ├── tower_instance_group.py │ │ │ │ ├── tower_inventory.py │ │ │ │ ├── tower_inventory_source.py │ │ │ │ ├── tower_inventory_source_update.py │ │ │ │ ├── tower_job_cancel.py │ │ │ │ ├── tower_job_launch.py │ │ │ │ ├── tower_job_list.py │ │ │ │ ├── tower_job_template.py │ │ │ │ ├── tower_job_wait.py │ │ │ │ ├── tower_label.py │ │ │ │ ├── tower_license.py │ │ │ │ ├── tower_meta.py │ │ │ │ ├── tower_notification_template.py │ │ │ │ ├── tower_organization.py │ │ │ │ ├── tower_project.py │ │ │ │ ├── tower_project_update.py │ │ │ │ ├── tower_receive.py │ │ │ │ ├── tower_role.py │ │ │ │ ├── tower_schedule.py │ │ │ │ ├── tower_send.py │ │ │ │ ├── tower_settings.py │ │ │ │ ├── tower_team.py │ │ │ │ ├── tower_token.py │ │ │ │ ├── tower_user.py │ │ │ │ ├── tower_workflow_job_template.py │ │ │ │ ├── tower_workflow_job_template_node.py │ │ │ │ ├── tower_workflow_launch.py │ │ │ │ └── tower_workflow_template.py │ │ │ ├── requirements.txt │ │ │ ├── setup.cfg │ │ │ ├── test │ │ │ └── awx │ │ │ │ ├── conftest.py │ │ │ │ ├── test_ad_hoc_wait.py │ │ │ │ ├── test_application.py │ │ │ │ ├── test_completeness.py │ │ │ │ ├── test_credential.py │ │ │ │ ├── test_credential_input_source.py │ │ │ │ ├── test_credential_type.py │ │ │ │ ├── test_group.py │ │ │ │ ├── test_instance_group.py │ │ │ │ ├── test_inventory.py │ │ │ │ ├── test_inventory_source.py │ │ │ │ ├── test_job.py │ │ │ │ ├── test_job_template.py │ │ │ │ ├── test_label.py │ │ │ │ ├── test_module_utils.py │ │ │ │ ├── test_notification_template.py │ │ │ │ ├── test_organization.py │ │ │ │ ├── test_project.py │ │ │ │ ├── test_role.py │ │ │ │ ├── test_schedule.py │ │ │ │ ├── test_send_receive.py │ │ │ │ ├── test_settings.py │ │ │ │ ├── test_team.py │ │ │ │ ├── test_token.py │ │ │ │ ├── test_user.py │ │ │ │ ├── test_workflow_job_template.py │ │ │ │ ├── test_workflow_job_template_node.py │ │ │ │ └── test_workflow_template.py │ │ │ ├── tests │ │ │ ├── integration │ │ │ │ └── targets │ │ │ │ │ ├── demo_data │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_ad_hoc_command │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_ad_hoc_command_cancel │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_ad_hoc_command_wait │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_application │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_credential │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_credential_input_source │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_credential_type │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_export │ │ │ │ │ ├── aliases │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_group │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_host │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_import │ │ │ │ │ ├── aliases │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_instance_group │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_inventory │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_inventory_source │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_inventory_source_update │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_job_cancel │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_job_launch │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_job_list │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_job_template │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_job_wait │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_label │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_lookup_api_plugin │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_notification_template │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_organization │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_project │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_project_manual │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── create_project_dir.yml │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_project_update │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_role │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_schedule │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_schedule_rrule │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_settings │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_team │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_token │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_user │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tower_workflow_job_template │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── tower_workflow_launch │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── sanity │ │ │ │ ├── ignore-2.10.txt │ │ │ │ └── ignore-2.9.txt │ │ │ └── tools │ │ │ ├── generate.yml │ │ │ ├── roles │ │ │ ├── generate │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ │ └── tower_module.j2 │ │ │ └── template_galaxy │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── README.md.j2 │ │ │ │ └── galaxy.yml.j2 │ │ │ ├── template_galaxy.yml │ │ │ └── vars │ │ │ ├── aliases.yml │ │ │ ├── associations.yml │ │ │ ├── examples.yml │ │ │ ├── generate_for.yml │ │ │ └── resolution.yml │ ├── community │ │ └── aws │ │ │ ├── .github │ │ │ ├── BOTMETA.yml │ │ │ └── settings.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.rst │ │ │ ├── CONTRIBUTING.md │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── changelogs │ │ │ ├── 499-elb-module-add-ip_address_type_option.yml │ │ │ ├── 516-rds_instance-preferred_maintenance_window.yml │ │ │ ├── changelog.yaml │ │ │ ├── config.yaml │ │ │ └── fragments │ │ │ │ └── .keep │ │ │ ├── docs │ │ │ ├── community.aws.aws_acm_info_module.rst │ │ │ ├── community.aws.aws_acm_module.rst │ │ │ ├── community.aws.aws_api_gateway_module.rst │ │ │ ├── community.aws.aws_application_scaling_policy_module.rst │ │ │ ├── community.aws.aws_batch_compute_environment_module.rst │ │ │ ├── community.aws.aws_batch_job_definition_module.rst │ │ │ ├── community.aws.aws_batch_job_queue_module.rst │ │ │ ├── community.aws.aws_codebuild_module.rst │ │ │ ├── community.aws.aws_codecommit_module.rst │ │ │ ├── community.aws.aws_codepipeline_module.rst │ │ │ ├── community.aws.aws_config_aggregation_authorization_module.rst │ │ │ ├── community.aws.aws_config_aggregator_module.rst │ │ │ ├── community.aws.aws_config_delivery_channel_module.rst │ │ │ ├── community.aws.aws_config_recorder_module.rst │ │ │ ├── community.aws.aws_config_rule_module.rst │ │ │ ├── community.aws.aws_direct_connect_confirm_connection_module.rst │ │ │ ├── community.aws.aws_direct_connect_connection_module.rst │ │ │ ├── community.aws.aws_direct_connect_gateway_module.rst │ │ │ ├── community.aws.aws_direct_connect_link_aggregation_group_module.rst │ │ │ ├── community.aws.aws_direct_connect_virtual_interface_module.rst │ │ │ ├── community.aws.aws_eks_cluster_module.rst │ │ │ ├── community.aws.aws_elasticbeanstalk_app_module.rst │ │ │ ├── community.aws.aws_glue_connection_module.rst │ │ │ ├── community.aws.aws_glue_job_module.rst │ │ │ ├── community.aws.aws_inspector_target_module.rst │ │ │ ├── community.aws.aws_kms_info_module.rst │ │ │ ├── community.aws.aws_kms_module.rst │ │ │ ├── community.aws.aws_region_info_module.rst │ │ │ ├── community.aws.aws_s3_bucket_info_module.rst │ │ │ ├── community.aws.aws_s3_cors_module.rst │ │ │ ├── community.aws.aws_secret_module.rst │ │ │ ├── community.aws.aws_ses_identity_module.rst │ │ │ ├── community.aws.aws_ses_identity_policy_module.rst │ │ │ ├── community.aws.aws_ses_rule_set_module.rst │ │ │ ├── community.aws.aws_sgw_info_module.rst │ │ │ ├── community.aws.aws_ssm_connection.rst │ │ │ ├── community.aws.aws_ssm_parameter_store_module.rst │ │ │ ├── community.aws.aws_step_functions_state_machine_execution_module.rst │ │ │ ├── community.aws.aws_step_functions_state_machine_module.rst │ │ │ ├── community.aws.aws_waf_condition_module.rst │ │ │ ├── community.aws.aws_waf_info_module.rst │ │ │ ├── community.aws.aws_waf_rule_module.rst │ │ │ ├── community.aws.aws_waf_web_acl_module.rst │ │ │ ├── community.aws.cloudformation_exports_info_module.rst │ │ │ ├── community.aws.cloudformation_stack_set_module.rst │ │ │ ├── community.aws.cloudfront_distribution_module.rst │ │ │ ├── community.aws.cloudfront_info_module.rst │ │ │ ├── community.aws.cloudfront_invalidation_module.rst │ │ │ ├── community.aws.cloudfront_origin_access_identity_module.rst │ │ │ ├── community.aws.cloudtrail_module.rst │ │ │ ├── community.aws.cloudwatchevent_rule_module.rst │ │ │ ├── community.aws.cloudwatchlogs_log_group_info_module.rst │ │ │ ├── community.aws.cloudwatchlogs_log_group_metric_filter_module.rst │ │ │ ├── community.aws.cloudwatchlogs_log_group_module.rst │ │ │ ├── community.aws.data_pipeline_module.rst │ │ │ ├── community.aws.dms_endpoint_module.rst │ │ │ ├── community.aws.dms_replication_subnet_group_module.rst │ │ │ ├── community.aws.dynamodb_table_module.rst │ │ │ ├── community.aws.dynamodb_ttl_module.rst │ │ │ ├── community.aws.ec2_ami_copy_module.rst │ │ │ ├── community.aws.ec2_asg_info_module.rst │ │ │ ├── community.aws.ec2_asg_lifecycle_hook_module.rst │ │ │ ├── community.aws.ec2_asg_module.rst │ │ │ ├── community.aws.ec2_customer_gateway_info_module.rst │ │ │ ├── community.aws.ec2_customer_gateway_module.rst │ │ │ ├── community.aws.ec2_eip_info_module.rst │ │ │ ├── community.aws.ec2_eip_module.rst │ │ │ ├── community.aws.ec2_elb_info_module.rst │ │ │ ├── community.aws.ec2_elb_module.rst │ │ │ ├── community.aws.ec2_instance_info_module.rst │ │ │ ├── community.aws.ec2_instance_module.rst │ │ │ ├── community.aws.ec2_launch_template_module.rst │ │ │ ├── community.aws.ec2_lc_find_module.rst │ │ │ ├── community.aws.ec2_lc_info_module.rst │ │ │ ├── community.aws.ec2_lc_module.rst │ │ │ ├── community.aws.ec2_metric_alarm_module.rst │ │ │ ├── community.aws.ec2_placement_group_info_module.rst │ │ │ ├── community.aws.ec2_placement_group_module.rst │ │ │ ├── community.aws.ec2_scaling_policy_module.rst │ │ │ ├── community.aws.ec2_snapshot_copy_module.rst │ │ │ ├── community.aws.ec2_transit_gateway_info_module.rst │ │ │ ├── community.aws.ec2_transit_gateway_module.rst │ │ │ ├── community.aws.ec2_vpc_egress_igw_module.rst │ │ │ ├── community.aws.ec2_vpc_endpoint_info_module.rst │ │ │ ├── community.aws.ec2_vpc_endpoint_module.rst │ │ │ ├── community.aws.ec2_vpc_endpoint_service_info_module.rst │ │ │ ├── community.aws.ec2_vpc_igw_info_module.rst │ │ │ ├── community.aws.ec2_vpc_igw_module.rst │ │ │ ├── community.aws.ec2_vpc_nacl_info_module.rst │ │ │ ├── community.aws.ec2_vpc_nacl_module.rst │ │ │ ├── community.aws.ec2_vpc_nat_gateway_info_module.rst │ │ │ ├── community.aws.ec2_vpc_nat_gateway_module.rst │ │ │ ├── community.aws.ec2_vpc_peer_module.rst │ │ │ ├── community.aws.ec2_vpc_peering_info_module.rst │ │ │ ├── community.aws.ec2_vpc_route_table_info_module.rst │ │ │ ├── community.aws.ec2_vpc_route_table_module.rst │ │ │ ├── community.aws.ec2_vpc_vgw_info_module.rst │ │ │ ├── community.aws.ec2_vpc_vgw_module.rst │ │ │ ├── community.aws.ec2_vpc_vpn_info_module.rst │ │ │ ├── community.aws.ec2_vpc_vpn_module.rst │ │ │ ├── community.aws.ec2_win_password_module.rst │ │ │ ├── community.aws.ecs_attribute_module.rst │ │ │ ├── community.aws.ecs_cluster_module.rst │ │ │ ├── community.aws.ecs_ecr_module.rst │ │ │ ├── community.aws.ecs_service_info_module.rst │ │ │ ├── community.aws.ecs_service_module.rst │ │ │ ├── community.aws.ecs_tag_module.rst │ │ │ ├── community.aws.ecs_task_module.rst │ │ │ ├── community.aws.ecs_taskdefinition_info_module.rst │ │ │ ├── community.aws.ecs_taskdefinition_module.rst │ │ │ ├── community.aws.efs_info_module.rst │ │ │ ├── community.aws.efs_module.rst │ │ │ ├── community.aws.elasticache_info_module.rst │ │ │ ├── community.aws.elasticache_module.rst │ │ │ ├── community.aws.elasticache_parameter_group_module.rst │ │ │ ├── community.aws.elasticache_snapshot_module.rst │ │ │ ├── community.aws.elasticache_subnet_group_module.rst │ │ │ ├── community.aws.elb_application_lb_info_module.rst │ │ │ ├── community.aws.elb_application_lb_module.rst │ │ │ ├── community.aws.elb_classic_lb_info_module.rst │ │ │ ├── community.aws.elb_classic_lb_module.rst │ │ │ ├── community.aws.elb_instance_module.rst │ │ │ ├── community.aws.elb_network_lb_module.rst │ │ │ ├── community.aws.elb_target_group_info_module.rst │ │ │ ├── community.aws.elb_target_group_module.rst │ │ │ ├── community.aws.elb_target_info_module.rst │ │ │ ├── community.aws.elb_target_module.rst │ │ │ ├── community.aws.execute_lambda_module.rst │ │ │ ├── community.aws.iam_cert_module.rst │ │ │ ├── community.aws.iam_group_module.rst │ │ │ ├── community.aws.iam_managed_policy_module.rst │ │ │ ├── community.aws.iam_mfa_device_info_module.rst │ │ │ ├── community.aws.iam_module.rst │ │ │ ├── community.aws.iam_password_policy_module.rst │ │ │ ├── community.aws.iam_policy_info_module.rst │ │ │ ├── community.aws.iam_policy_module.rst │ │ │ ├── community.aws.iam_role_info_module.rst │ │ │ ├── community.aws.iam_role_module.rst │ │ │ ├── community.aws.iam_saml_federation_module.rst │ │ │ ├── community.aws.iam_server_certificate_info_module.rst │ │ │ ├── community.aws.iam_user_info_module.rst │ │ │ ├── community.aws.iam_user_module.rst │ │ │ ├── community.aws.kinesis_stream_module.rst │ │ │ ├── community.aws.lambda_alias_module.rst │ │ │ ├── community.aws.lambda_event_module.rst │ │ │ ├── community.aws.lambda_facts_module.rst │ │ │ ├── community.aws.lambda_info_module.rst │ │ │ ├── community.aws.lambda_module.rst │ │ │ ├── community.aws.lambda_policy_module.rst │ │ │ ├── community.aws.lightsail_module.rst │ │ │ ├── community.aws.rds_instance_info_module.rst │ │ │ ├── community.aws.rds_instance_module.rst │ │ │ ├── community.aws.rds_module.rst │ │ │ ├── community.aws.rds_param_group_module.rst │ │ │ ├── community.aws.rds_snapshot_info_module.rst │ │ │ ├── community.aws.rds_snapshot_module.rst │ │ │ ├── community.aws.rds_subnet_group_module.rst │ │ │ ├── community.aws.redshift_cross_region_snapshots_module.rst │ │ │ ├── community.aws.redshift_info_module.rst │ │ │ ├── community.aws.redshift_module.rst │ │ │ ├── community.aws.redshift_subnet_group_module.rst │ │ │ ├── community.aws.route53_health_check_module.rst │ │ │ ├── community.aws.route53_info_module.rst │ │ │ ├── community.aws.route53_module.rst │ │ │ ├── community.aws.route53_zone_module.rst │ │ │ ├── community.aws.s3_bucket_notification_module.rst │ │ │ ├── community.aws.s3_lifecycle_module.rst │ │ │ ├── community.aws.s3_logging_module.rst │ │ │ ├── community.aws.s3_metrics_configuration_module.rst │ │ │ ├── community.aws.s3_sync_module.rst │ │ │ ├── community.aws.s3_website_module.rst │ │ │ ├── community.aws.sns_module.rst │ │ │ ├── community.aws.sns_topic_module.rst │ │ │ ├── community.aws.sqs_queue_module.rst │ │ │ ├── community.aws.sts_assume_role_module.rst │ │ │ ├── community.aws.sts_session_token_module.rst │ │ │ ├── community.aws.wafv2_ip_set_info_module.rst │ │ │ ├── community.aws.wafv2_ip_set_module.rst │ │ │ ├── community.aws.wafv2_resources_info_module.rst │ │ │ ├── community.aws.wafv2_resources_module.rst │ │ │ ├── community.aws.wafv2_rule_group_info_module.rst │ │ │ ├── community.aws.wafv2_rule_group_module.rst │ │ │ ├── community.aws.wafv2_web_acl_info_module.rst │ │ │ └── community.aws.wafv2_web_acl_module.rst │ │ │ ├── galaxy.yml │ │ │ ├── meta │ │ │ └── runtime.yml │ │ │ ├── plugins │ │ │ ├── connection │ │ │ │ ├── __init__.py │ │ │ │ └── aws_ssm.py │ │ │ ├── module_utils │ │ │ │ └── wafv2.py │ │ │ └── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── aws_acm.py │ │ │ │ ├── aws_acm_facts.py │ │ │ │ ├── aws_acm_info.py │ │ │ │ ├── aws_api_gateway.py │ │ │ │ ├── aws_application_scaling_policy.py │ │ │ │ ├── aws_batch_compute_environment.py │ │ │ │ ├── aws_batch_job_definition.py │ │ │ │ ├── aws_batch_job_queue.py │ │ │ │ ├── aws_codebuild.py │ │ │ │ ├── aws_codecommit.py │ │ │ │ ├── aws_codepipeline.py │ │ │ │ ├── aws_config_aggregation_authorization.py │ │ │ │ ├── aws_config_aggregator.py │ │ │ │ ├── aws_config_delivery_channel.py │ │ │ │ ├── aws_config_recorder.py │ │ │ │ ├── aws_config_rule.py │ │ │ │ ├── aws_direct_connect_confirm_connection.py │ │ │ │ ├── aws_direct_connect_connection.py │ │ │ │ ├── aws_direct_connect_gateway.py │ │ │ │ ├── aws_direct_connect_link_aggregation_group.py │ │ │ │ ├── aws_direct_connect_virtual_interface.py │ │ │ │ ├── aws_eks_cluster.py │ │ │ │ ├── aws_elasticbeanstalk_app.py │ │ │ │ ├── aws_glue_connection.py │ │ │ │ ├── aws_glue_job.py │ │ │ │ ├── aws_inspector_target.py │ │ │ │ ├── aws_kms.py │ │ │ │ ├── aws_kms_facts.py │ │ │ │ ├── aws_kms_info.py │ │ │ │ ├── aws_region_facts.py │ │ │ │ ├── aws_region_info.py │ │ │ │ ├── aws_s3_bucket_facts.py │ │ │ │ ├── aws_s3_bucket_info.py │ │ │ │ ├── aws_s3_cors.py │ │ │ │ ├── aws_secret.py │ │ │ │ ├── aws_ses_identity.py │ │ │ │ ├── aws_ses_identity_policy.py │ │ │ │ ├── aws_ses_rule_set.py │ │ │ │ ├── aws_sgw_facts.py │ │ │ │ ├── aws_sgw_info.py │ │ │ │ ├── aws_ssm_parameter_store.py │ │ │ │ ├── aws_step_functions_state_machine.py │ │ │ │ ├── aws_step_functions_state_machine_execution.py │ │ │ │ ├── aws_waf_condition.py │ │ │ │ ├── aws_waf_facts.py │ │ │ │ ├── aws_waf_info.py │ │ │ │ ├── aws_waf_rule.py │ │ │ │ ├── aws_waf_web_acl.py │ │ │ │ ├── cloudformation_exports_info.py │ │ │ │ ├── cloudformation_stack_set.py │ │ │ │ ├── cloudfront_distribution.py │ │ │ │ ├── cloudfront_facts.py │ │ │ │ ├── cloudfront_info.py │ │ │ │ ├── cloudfront_invalidation.py │ │ │ │ ├── cloudfront_origin_access_identity.py │ │ │ │ ├── cloudtrail.py │ │ │ │ ├── cloudwatchevent_rule.py │ │ │ │ ├── cloudwatchlogs_log_group.py │ │ │ │ ├── cloudwatchlogs_log_group_facts.py │ │ │ │ ├── cloudwatchlogs_log_group_info.py │ │ │ │ ├── cloudwatchlogs_log_group_metric_filter.py │ │ │ │ ├── data_pipeline.py │ │ │ │ ├── dms_endpoint.py │ │ │ │ ├── dms_replication_subnet_group.py │ │ │ │ ├── dynamodb_table.py │ │ │ │ ├── dynamodb_ttl.py │ │ │ │ ├── ec2_ami_copy.py │ │ │ │ ├── ec2_asg.py │ │ │ │ ├── ec2_asg_facts.py │ │ │ │ ├── ec2_asg_info.py │ │ │ │ ├── ec2_asg_lifecycle_hook.py │ │ │ │ ├── ec2_customer_gateway.py │ │ │ │ ├── ec2_customer_gateway_facts.py │ │ │ │ ├── ec2_customer_gateway_info.py │ │ │ │ ├── ec2_eip.py │ │ │ │ ├── ec2_eip_facts.py │ │ │ │ ├── ec2_eip_info.py │ │ │ │ ├── ec2_elb.py │ │ │ │ ├── ec2_elb_facts.py │ │ │ │ ├── ec2_elb_info.py │ │ │ │ ├── ec2_instance.py │ │ │ │ ├── ec2_instance_facts.py │ │ │ │ ├── ec2_instance_info.py │ │ │ │ ├── ec2_launch_template.py │ │ │ │ ├── ec2_lc.py │ │ │ │ ├── ec2_lc_facts.py │ │ │ │ ├── ec2_lc_find.py │ │ │ │ ├── ec2_lc_info.py │ │ │ │ ├── ec2_metric_alarm.py │ │ │ │ ├── ec2_placement_group.py │ │ │ │ ├── ec2_placement_group_facts.py │ │ │ │ ├── ec2_placement_group_info.py │ │ │ │ ├── ec2_scaling_policy.py │ │ │ │ ├── ec2_snapshot_copy.py │ │ │ │ ├── ec2_transit_gateway.py │ │ │ │ ├── ec2_transit_gateway_info.py │ │ │ │ ├── ec2_vpc_egress_igw.py │ │ │ │ ├── ec2_vpc_endpoint.py │ │ │ │ ├── ec2_vpc_endpoint_facts.py │ │ │ │ ├── ec2_vpc_endpoint_info.py │ │ │ │ ├── ec2_vpc_endpoint_service_info.py │ │ │ │ ├── ec2_vpc_igw.py │ │ │ │ ├── ec2_vpc_igw_facts.py │ │ │ │ ├── ec2_vpc_igw_info.py │ │ │ │ ├── ec2_vpc_nacl.py │ │ │ │ ├── ec2_vpc_nacl_facts.py │ │ │ │ ├── ec2_vpc_nacl_info.py │ │ │ │ ├── ec2_vpc_nat_gateway.py │ │ │ │ ├── ec2_vpc_nat_gateway_facts.py │ │ │ │ ├── ec2_vpc_nat_gateway_info.py │ │ │ │ ├── ec2_vpc_peer.py │ │ │ │ ├── ec2_vpc_peering_facts.py │ │ │ │ ├── ec2_vpc_peering_info.py │ │ │ │ ├── ec2_vpc_route_table.py │ │ │ │ ├── ec2_vpc_route_table_facts.py │ │ │ │ ├── ec2_vpc_route_table_info.py │ │ │ │ ├── ec2_vpc_vgw.py │ │ │ │ ├── ec2_vpc_vgw_facts.py │ │ │ │ ├── ec2_vpc_vgw_info.py │ │ │ │ ├── ec2_vpc_vpn.py │ │ │ │ ├── ec2_vpc_vpn_facts.py │ │ │ │ ├── ec2_vpc_vpn_info.py │ │ │ │ ├── ec2_win_password.py │ │ │ │ ├── ecs_attribute.py │ │ │ │ ├── ecs_cluster.py │ │ │ │ ├── ecs_ecr.py │ │ │ │ ├── ecs_service.py │ │ │ │ ├── ecs_service_facts.py │ │ │ │ ├── ecs_service_info.py │ │ │ │ ├── ecs_tag.py │ │ │ │ ├── ecs_task.py │ │ │ │ ├── ecs_taskdefinition.py │ │ │ │ ├── ecs_taskdefinition_facts.py │ │ │ │ ├── ecs_taskdefinition_info.py │ │ │ │ ├── efs.py │ │ │ │ ├── efs_facts.py │ │ │ │ ├── efs_info.py │ │ │ │ ├── elasticache.py │ │ │ │ ├── elasticache_facts.py │ │ │ │ ├── elasticache_info.py │ │ │ │ ├── elasticache_parameter_group.py │ │ │ │ ├── elasticache_snapshot.py │ │ │ │ ├── elasticache_subnet_group.py │ │ │ │ ├── elb_application_lb.py │ │ │ │ ├── elb_application_lb_facts.py │ │ │ │ ├── elb_application_lb_info.py │ │ │ │ ├── elb_classic_lb.py │ │ │ │ ├── elb_classic_lb_facts.py │ │ │ │ ├── elb_classic_lb_info.py │ │ │ │ ├── elb_instance.py │ │ │ │ ├── elb_network_lb.py │ │ │ │ ├── elb_target.py │ │ │ │ ├── elb_target_facts.py │ │ │ │ ├── elb_target_group.py │ │ │ │ ├── elb_target_group_facts.py │ │ │ │ ├── elb_target_group_info.py │ │ │ │ ├── elb_target_info.py │ │ │ │ ├── execute_lambda.py │ │ │ │ ├── iam.py │ │ │ │ ├── iam_cert.py │ │ │ │ ├── iam_cert_facts.py │ │ │ │ ├── iam_group.py │ │ │ │ ├── iam_managed_policy.py │ │ │ │ ├── iam_mfa_device_facts.py │ │ │ │ ├── iam_mfa_device_info.py │ │ │ │ ├── iam_password_policy.py │ │ │ │ ├── iam_policy.py │ │ │ │ ├── iam_policy_info.py │ │ │ │ ├── iam_role.py │ │ │ │ ├── iam_role_facts.py │ │ │ │ ├── iam_role_info.py │ │ │ │ ├── iam_saml_federation.py │ │ │ │ ├── iam_server_certificate_facts.py │ │ │ │ ├── iam_server_certificate_info.py │ │ │ │ ├── iam_user.py │ │ │ │ ├── iam_user_info.py │ │ │ │ ├── kinesis_stream.py │ │ │ │ ├── lambda.py │ │ │ │ ├── lambda_alias.py │ │ │ │ ├── lambda_event.py │ │ │ │ ├── lambda_facts.py │ │ │ │ ├── lambda_info.py │ │ │ │ ├── lambda_policy.py │ │ │ │ ├── lightsail.py │ │ │ │ ├── rds.py │ │ │ │ ├── rds_instance.py │ │ │ │ ├── rds_instance_facts.py │ │ │ │ ├── rds_instance_info.py │ │ │ │ ├── rds_param_group.py │ │ │ │ ├── rds_snapshot.py │ │ │ │ ├── rds_snapshot_facts.py │ │ │ │ ├── rds_snapshot_info.py │ │ │ │ ├── rds_subnet_group.py │ │ │ │ ├── redshift.py │ │ │ │ ├── redshift_cross_region_snapshots.py │ │ │ │ ├── redshift_facts.py │ │ │ │ ├── redshift_info.py │ │ │ │ ├── redshift_subnet_group.py │ │ │ │ ├── route53.py │ │ │ │ ├── route53_facts.py │ │ │ │ ├── route53_health_check.py │ │ │ │ ├── route53_info.py │ │ │ │ ├── route53_zone.py │ │ │ │ ├── s3_bucket_notification.py │ │ │ │ ├── s3_lifecycle.py │ │ │ │ ├── s3_logging.py │ │ │ │ ├── s3_metrics_configuration.py │ │ │ │ ├── s3_sync.py │ │ │ │ ├── s3_website.py │ │ │ │ ├── sns.py │ │ │ │ ├── sns_topic.py │ │ │ │ ├── sqs_queue.py │ │ │ │ ├── sts_assume_role.py │ │ │ │ ├── sts_session_token.py │ │ │ │ ├── wafv2_ip_set.py │ │ │ │ ├── wafv2_ip_set_info.py │ │ │ │ ├── wafv2_resources.py │ │ │ │ ├── wafv2_resources_info.py │ │ │ │ ├── wafv2_rule_group.py │ │ │ │ ├── wafv2_rule_group_info.py │ │ │ │ ├── wafv2_web_acl.py │ │ │ │ └── wafv2_web_acl_info.py │ │ │ ├── requirements.txt │ │ │ ├── scripts │ │ │ └── inventory │ │ │ │ ├── __init__.py │ │ │ │ ├── ec2.ini │ │ │ │ └── ec2.py │ │ │ ├── shippable.yml │ │ │ ├── test-requirements.txt │ │ │ └── tests │ │ │ ├── .gitignore │ │ │ ├── integration │ │ │ ├── constraints.txt │ │ │ ├── requirements.txt │ │ │ └── targets │ │ │ │ ├── __init__.py │ │ │ │ ├── aws_acm │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── full_acm_test.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_api_gateway │ │ │ │ ├── aliases │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ │ └── minimal-swagger-api.yml.j2 │ │ │ │ ├── aws_codebuild │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ └── codebuild_iam_trust_policy.json │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_codecommit │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_codepipeline │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ └── codepipeline_iam_trust_policy.json │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_config │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ ├── files │ │ │ │ │ └── config-trust-policy.json │ │ │ │ ├── tasks │ │ │ │ │ └── main.yaml │ │ │ │ └── templates │ │ │ │ │ └── config-s3-policy.json.j2 │ │ │ │ ├── aws_eks_cluster │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ └── eks-trust-policy.json │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── botocore_lt_1.10.1.yml │ │ │ │ │ ├── botocore_lt_1.12.38.yml │ │ │ │ │ ├── full_test.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_elasticbeanstalk_app │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_glue_connection │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── test_connection_jdbc.yml │ │ │ │ │ └── test_connection_network.yml │ │ │ │ ├── aws_inspector_target │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_kms │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ │ ├── console-policy-no-key-rotation.j2 │ │ │ │ │ └── console-policy.j2 │ │ │ │ ├── aws_region_info │ │ │ │ ├── aliases │ │ │ │ ├── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_s3_bucket_info │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_secret │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ ├── files │ │ │ │ │ ├── hello_world.zip │ │ │ │ │ └── secretsmanager-trust-policy.json │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ │ ├── aws_ses_identity │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ ├── meta │ │ │ │ │ └── main.yaml │ │ │ │ └── tasks │ │ │ │ │ ├── assert_defaults.yaml │ │ │ │ │ └── main.yaml │ │ │ │ ├── aws_ses_identity_policy │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yaml │ │ │ │ └── templates │ │ │ │ │ └── policy.json.j2 │ │ │ │ ├── aws_ses_rule_set │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ └── tasks │ │ │ │ │ ├── active-rule-set-tests.yaml │ │ │ │ │ ├── cleanup-lock.yaml │ │ │ │ │ ├── inactive-rule-set-tests.yaml │ │ │ │ │ ├── main.yaml │ │ │ │ │ ├── obtain-lock-wrapper.yaml │ │ │ │ │ └── obtain-lock.yaml │ │ │ │ ├── aws_ssm_parameter_store │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_step_functions_state_machine │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── alternative_state_machine.json │ │ │ │ │ ├── state_machine.json │ │ │ │ │ └── state_machines_iam_trust_policy.json │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── aws_waf_web_acl │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── cloudformation_exports_info │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ └── test_stack.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── cloudformation_stack_set │ │ │ │ ├── aliases │ │ │ │ ├── files │ │ │ │ │ ├── test_bucket_stack.yml │ │ │ │ │ └── test_modded_bucket_stack.yml │ │ │ │ ├── playbooks │ │ │ │ │ └── full_test.yml │ │ │ │ ├── runme.sh │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── cloudfront_distribution │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── cloudtrail │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ │ ├── cloudtrail-no-kms-assume-policy.j2 │ │ │ │ │ ├── cloudtrail-no-kms-policy.j2 │ │ │ │ │ ├── cloudwatch-assume-policy.j2 │ │ │ │ │ ├── cloudwatch-policy.j2 │ │ │ │ │ ├── kms-policy.j2 │ │ │ │ │ ├── s3-policy.j2 │ │ │ │ │ └── sns-policy.j2 │ │ │ │ ├── cloudwatchlogs │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── connection │ │ │ │ ├── aliases │ │ │ │ ├── test.sh │ │ │ │ └── test_connection.yml │ │ │ │ ├── connection_aws_ssm │ │ │ │ ├── aliases │ │ │ │ ├── aws_ssm_integration_test_setup.yml │ │ │ │ ├── aws_ssm_integration_test_setup │ │ │ │ │ ├── README.md │ │ │ │ │ ├── defaults │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── files │ │ │ │ │ │ └── ec2-trust-policy.json │ │ │ │ │ ├── tasks │ │ │ │ │ │ ├── debian.yml │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ └── redhat.yml │ │ │ │ │ └── templates │ │ │ │ │ │ ├── aws-env-vars.j2 │ │ │ │ │ │ ├── ec2_linux_vars_to_delete.yml.j2 │ │ │ │ │ │ ├── ec2_windows_vars_to_delete.yml.j2 │ │ │ │ │ │ ├── iam_role_vars_to_delete.yml.j2 │ │ │ │ │ │ ├── inventory-combined.aws_ssm.j2 │ │ │ │ │ │ └── s3_vars_to_delete.yml.j2 │ │ │ │ ├── aws_ssm_integration_test_teardown.yml │ │ │ │ ├── aws_ssm_integration_test_teardown │ │ │ │ │ ├── README.md │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ └── runme.sh │ │ │ │ ├── dms_endpoint │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── dms_replication_subnet_group │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ └── dmsAssumeRolePolicyDocument.json │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_asg │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_eip │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_instance │ │ │ │ ├── aliases │ │ │ │ ├── inventory │ │ │ │ ├── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── roles │ │ │ │ │ └── ec2_instance │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── files │ │ │ │ │ │ └── assume-role-policy.json │ │ │ │ │ │ ├── meta │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── block_devices.yml │ │ │ │ │ │ ├── checkmode_tests.yml │ │ │ │ │ │ ├── cpu_options.yml │ │ │ │ │ │ ├── default_vpc_tests.yml │ │ │ │ │ │ ├── ebs_optimized.yml │ │ │ │ │ │ ├── env_cleanup.yml │ │ │ │ │ │ ├── env_setup.yml │ │ │ │ │ │ ├── external_resource_attach.yml │ │ │ │ │ │ ├── find_ami.yml │ │ │ │ │ │ ├── iam_instance_role.yml │ │ │ │ │ │ ├── instance_no_wait.yml │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ ├── security_group.yml │ │ │ │ │ │ ├── tags_and_vpc_settings.yml │ │ │ │ │ │ ├── termination_protection.yml │ │ │ │ │ │ ├── termination_protection_wrapper.yml │ │ │ │ │ │ ├── uptime.yml │ │ │ │ │ │ ├── version_fail.yml │ │ │ │ │ │ └── version_fail_wrapper.yml │ │ │ │ └── runme.sh │ │ │ │ ├── ec2_launch_template │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ └── assume-role-policy.json │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── cpu_options.yml │ │ │ │ │ ├── graceful_failure.yml │ │ │ │ │ ├── iam_instance_role.yml │ │ │ │ │ ├── instance-metadata.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── network_interfaces.yml │ │ │ │ │ ├── tags_and_vpc_settings.yml │ │ │ │ │ └── versions.yml │ │ │ │ ├── ec2_metric_alarm │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ ├── env_cleanup.yml │ │ │ │ │ ├── env_setup.yml │ │ │ │ │ └── main.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_scaling_policy │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_transit_gateway │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_egress_igw │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_endpoint │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_endpoint_service_info │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_igw │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_nacl │ │ │ │ ├── aliases │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── ingress_and_egress.yml │ │ │ │ │ ├── ipv6.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── subnet_ids.yml │ │ │ │ │ ├── subnet_names.yml │ │ │ │ │ └── tags.yml │ │ │ │ ├── ec2_vpc_nat_gateway │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_peer │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_route_table │ │ │ │ ├── aliases │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_vgw │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ec2_vpc_vpn_info │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ecs_cluster │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── ec2-trust-policy.json │ │ │ │ │ └── ecs-trust-policy.json │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── full_test.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── network_assign_public_ip_fail.yml │ │ │ │ │ ├── network_fail.yml │ │ │ │ │ ├── network_force_new_deployment.yml │ │ │ │ │ └── network_force_new_deployment_fail.yml │ │ │ │ ├── ecs_ecr │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── ecs_tag │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── efs │ │ │ │ ├── aliases │ │ │ │ ├── playbooks │ │ │ │ │ ├── full_test.yml │ │ │ │ │ ├── roles │ │ │ │ │ │ └── efs │ │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── version_fail.yml │ │ │ │ └── runme.sh │ │ │ │ ├── elasticache │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── elb_application_lb │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── full_test.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── test_alb_bad_listener_options.yml │ │ │ │ │ ├── test_alb_ip_address_type_options.yml │ │ │ │ │ ├── test_alb_tags.yml │ │ │ │ │ ├── test_alb_with_asg.yml │ │ │ │ │ ├── test_creating_alb.yml │ │ │ │ │ ├── test_deleting_alb.yml │ │ │ │ │ ├── test_modifying_alb_listeners.yml │ │ │ │ │ ├── test_multiple_actions.yml │ │ │ │ │ └── test_multiple_actions_fail.yml │ │ │ │ ├── elb_application_lb_info │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── full_test.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── setup.yml │ │ │ │ │ ├── teardown.yml │ │ │ │ │ └── test_elb_application_lb_info.yml │ │ │ │ ├── elb_classic_lb │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── elb_network_lb │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── cert.pem │ │ │ │ │ └── key.pem │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── test_creating_nlb.yml │ │ │ │ │ ├── test_deleting_nlb.yml │ │ │ │ │ ├── test_modifying_nlb_listeners.yml │ │ │ │ │ ├── test_nlb_bad_listener_options.yml │ │ │ │ │ ├── test_nlb_ip_address_type_option.yml │ │ │ │ │ ├── test_nlb_tags.yml │ │ │ │ │ └── test_nlb_with_asg.yml │ │ │ │ ├── elb_target │ │ │ │ ├── aliases │ │ │ │ ├── playbooks │ │ │ │ │ ├── full_test.yml │ │ │ │ │ ├── roles │ │ │ │ │ │ ├── elb_lambda_target │ │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ │ ├── ansible_lambda_target.py │ │ │ │ │ │ │ │ └── assume-role.json │ │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── elb_target │ │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── version_fail.yml │ │ │ │ └── runme.sh │ │ │ │ ├── elb_target_info │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── iam_group │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── iam_password_policy │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ │ ├── iam_policy │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── no_access.json │ │ │ │ │ ├── no_access_with_id.json │ │ │ │ │ ├── no_access_with_second_id.json │ │ │ │ │ └── no_trust.json │ │ │ │ └── tasks │ │ │ │ │ ├── main.yml │ │ │ │ │ └── object.yml │ │ │ │ ├── iam_role │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── deny-all-a.json │ │ │ │ │ ├── deny-all-b.json │ │ │ │ │ ├── deny-all.json │ │ │ │ │ └── deny-assume.json │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── iam_saml_federation │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── example1.xml │ │ │ │ │ └── example2.xml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── iam_user │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── kinesis_stream │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── main.yml │ │ │ │ │ └── test_encryption.yml │ │ │ │ ├── lambda │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── mini_lambda.py │ │ │ │ │ └── minimal_trust_policy.json │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── lambda_alias │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── mini_lambda.py │ │ │ │ │ └── minimal_trust_policy.json │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── lambda_policy │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── mini_http_lambda.py │ │ │ │ │ └── minimal_trust_policy.json │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ │ └── endpoint-test-swagger-api.yml.j2 │ │ │ │ ├── lightsail │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── prepare_tests │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── rds_instance │ │ │ │ ├── aliases │ │ │ │ ├── inventory │ │ │ │ ├── main.yml │ │ │ │ ├── roles │ │ │ │ │ └── rds_instance │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ ├── test_aurora.yml │ │ │ │ │ │ ├── test_bad_options.yml │ │ │ │ │ │ ├── test_credentials.yml │ │ │ │ │ │ ├── test_encryption.yml │ │ │ │ │ │ ├── test_final_snapshot.yml │ │ │ │ │ │ ├── test_modification.yml │ │ │ │ │ │ ├── test_processor_features.yml │ │ │ │ │ │ ├── test_read_replica.yml │ │ │ │ │ │ ├── test_restore_instance.yml │ │ │ │ │ │ ├── test_snapshot.yml │ │ │ │ │ │ ├── test_states.yml │ │ │ │ │ │ ├── test_tags.yml │ │ │ │ │ │ └── test_vpc_security_groups.yml │ │ │ │ └── runme.sh │ │ │ │ ├── rds_param_group │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── rds_subnet_group │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── params.yml │ │ │ │ │ └── tests.yml │ │ │ │ ├── redshift │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── route53 │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── route53_zone │ │ │ │ ├── aliases │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── s3_bucket_notification │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── lambda-trust-policy.json │ │ │ │ │ └── mini_lambda.py │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── s3_lifecycle │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── s3_logging │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── s3_metrics_configuration │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── main.yml │ │ │ │ │ └── s3_metrics_info.yml │ │ │ │ ├── s3_sync │ │ │ │ ├── aliases │ │ │ │ ├── files │ │ │ │ │ ├── test1.txt │ │ │ │ │ ├── test2.yml │ │ │ │ │ └── test3.json │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── script_inventory_ec2 │ │ │ │ ├── aliases │ │ │ │ ├── ec2.sh │ │ │ │ ├── inventory_diff.py │ │ │ │ └── runme.sh │ │ │ │ ├── setup_ec2 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── common.yml │ │ │ │ └── vars │ │ │ │ │ └── main.yml │ │ │ │ ├── setup_remote_tmp_dir │ │ │ │ ├── handlers │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── default-cleanup.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── windows-cleanup.yml │ │ │ │ │ └── windows.yml │ │ │ │ ├── sns │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── sns_topic │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ ├── files │ │ │ │ │ ├── lambda-trust-policy.json │ │ │ │ │ └── sns_topic_lambda │ │ │ │ │ │ └── sns_topic_lambda.py │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ │ ├── initial-policy.json │ │ │ │ │ └── updated-policy.json │ │ │ │ ├── sqs_queue │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── sts_assume_role │ │ │ │ ├── aliases │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ │ └── policy.json.j2 │ │ │ │ ├── wafv2 │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ ├── alb.yml │ │ │ │ │ ├── create_webacl.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── rule_group.yml │ │ │ │ │ ├── test_webacl.yml │ │ │ │ │ └── waf_resources.yml │ │ │ │ └── wafv2_ip_set │ │ │ │ ├── aliases │ │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ │ ├── requirements.yml │ │ │ ├── sanity │ │ │ ├── ignore-2.10.txt │ │ │ ├── ignore-2.11.txt │ │ │ ├── ignore-2.12.txt │ │ │ └── ignore-2.9.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 │ │ │ ├── plugins │ │ │ │ ├── __init__.py │ │ │ │ ├── connection │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_aws_ssm.py │ │ │ │ └── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── certs │ │ │ │ │ │ ├── a.pem │ │ │ │ │ │ ├── b.pem │ │ │ │ │ │ ├── chain-1.0.cert │ │ │ │ │ │ ├── chain-1.1.cert │ │ │ │ │ │ ├── chain-1.2.cert │ │ │ │ │ │ ├── chain-1.3.cert │ │ │ │ │ │ ├── chain-1.4.cert │ │ │ │ │ │ ├── chain-4.cert │ │ │ │ │ │ ├── ec2_win_password.pem │ │ │ │ │ │ ├── simple-chain-a.cert │ │ │ │ │ │ └── simple-chain-b.cert │ │ │ │ │ └── thezip.zip │ │ │ │ │ ├── placebo_recordings │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aws_direct_connect_connection │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── associations_are_not_updated │ │ │ │ │ │ │ └── directconnect.DescribeConnections_1.json │ │ │ │ │ │ ├── changed_properties │ │ │ │ │ │ │ └── directconnect.DescribeConnections_1.json │ │ │ │ │ │ ├── connection_does_not_exist │ │ │ │ │ │ │ └── directconnect.DescribeConnections_1.json │ │ │ │ │ │ ├── connection_exists_by_id │ │ │ │ │ │ │ └── directconnect.DescribeConnections_1.json │ │ │ │ │ │ ├── connection_exists_by_name │ │ │ │ │ │ │ └── directconnect.DescribeConnections_1.json │ │ │ │ │ │ ├── connection_status │ │ │ │ │ │ │ └── directconnect.DescribeConnections_1.json │ │ │ │ │ │ └── create_and_delete │ │ │ │ │ │ │ ├── directconnect.CreateConnection_1.json │ │ │ │ │ │ │ └── directconnect.DeleteConnection_1.json │ │ │ │ │ ├── aws_direct_connect_link_aggregation_group │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── delete_lag_with_connections │ │ │ │ │ │ │ ├── directconnect.DeleteConnection_1.json │ │ │ │ │ │ │ ├── directconnect.DeleteLag_1.json │ │ │ │ │ │ │ ├── directconnect.DescribeLags_1.json │ │ │ │ │ │ │ ├── directconnect.DescribeLags_2.json │ │ │ │ │ │ │ ├── directconnect.DescribeLags_3.json │ │ │ │ │ │ │ ├── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ │ ├── directconnect.DisassociateConnectionFromLag_1.json │ │ │ │ │ │ │ └── directconnect.UpdateLag_1.json │ │ │ │ │ │ ├── delete_lag_with_connections_without_force_delete │ │ │ │ │ │ │ ├── directconnect.DescribeLags_1.json │ │ │ │ │ │ │ ├── directconnect.DescribeLags_2.json │ │ │ │ │ │ │ ├── directconnect.DescribeLags_3.json │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ ├── delete_nonexistent_lag │ │ │ │ │ │ │ └── directconnect.DescribeLags_1.json │ │ │ │ │ │ ├── lag_changed_true │ │ │ │ │ │ │ └── directconnect.DescribeLags_1.json │ │ │ │ │ │ ├── lag_changed_true_no │ │ │ │ │ │ │ └── directconnect.DescribeLags_1.json │ │ │ │ │ │ ├── lag_exists │ │ │ │ │ │ │ └── directconnect.DescribeLags_1.json │ │ │ │ │ │ ├── lag_exists_using_name │ │ │ │ │ │ │ └── directconnect.DescribeLags_1.json │ │ │ │ │ │ ├── lag_status │ │ │ │ │ │ │ └── directconnect.DescribeLags_1.json │ │ │ │ │ │ ├── nonexistent_lag_does_not_exist │ │ │ │ │ │ │ └── directconnect.DescribeLags_1.json │ │ │ │ │ │ ├── nonexistent_lag_status │ │ │ │ │ │ │ └── directconnect.DescribeLags_1.json │ │ │ │ │ │ └── update_lag │ │ │ │ │ │ │ ├── directconnect.DescribeLags_1.json │ │ │ │ │ │ │ ├── directconnect.DescribeLags_2.json │ │ │ │ │ │ │ └── directconnect.UpdateLag_1.json │ │ │ │ │ ├── aws_direct_connect_virtual_interface │ │ │ │ │ │ ├── create_private_vi │ │ │ │ │ │ │ ├── directconnect.CreatePrivateVirtualInterface_1.json │ │ │ │ │ │ │ ├── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ │ ├── directconnect.DescribeVirtualInterfaces_2.json │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_3.json │ │ │ │ │ │ ├── create_public_vi │ │ │ │ │ │ │ ├── directconnect.CreatePublicVirtualInterface_1.json │ │ │ │ │ │ │ ├── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ │ ├── directconnect.DescribeVirtualInterfaces_2.json │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_3.json │ │ │ │ │ │ ├── delete_vi │ │ │ │ │ │ │ ├── directconnect.DeleteVirtualInterface_1.json │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ ├── find_unique_vi_by_connection_id │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ ├── find_unique_vi_by_name │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ ├── find_unique_vi_by_vi_id │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ ├── find_unique_vi_returns_missing_for_vi_id │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ │ └── find_unique_vi_returns_multiple │ │ │ │ │ │ │ └── directconnect.DescribeVirtualInterfaces_1.json │ │ │ │ │ ├── data_pipeline │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── activate_pipeline │ │ │ │ │ │ │ ├── datapipeline.ActivatePipeline_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_10.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_11.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_12.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_13.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_14.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_15.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_16.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_17.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_18.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_19.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_2.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_20.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_21.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_22.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_23.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_24.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_25.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_26.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_27.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_28.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_29.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_3.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_30.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_31.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_32.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_33.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_34.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_35.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_36.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_4.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_5.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_6.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_7.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_8.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_9.json │ │ │ │ │ │ │ └── datapipeline.ListPipelines_1.json │ │ │ │ │ │ ├── activate_without_population │ │ │ │ │ │ │ ├── datapipeline.ActivatePipeline_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_10.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_11.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_12.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_13.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_14.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_15.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_16.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_17.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_18.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_19.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_2.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_20.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_21.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_22.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_23.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_24.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_25.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_26.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_27.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_28.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_29.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_3.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_30.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_31.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_32.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_33.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_34.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_35.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_4.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_5.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_6.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_7.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_8.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_9.json │ │ │ │ │ │ │ └── datapipeline.ListPipelines_1.json │ │ │ │ │ │ ├── check_dp_exists_false │ │ │ │ │ │ │ └── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ ├── check_dp_exists_true │ │ │ │ │ │ │ └── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ ├── check_dp_status │ │ │ │ │ │ │ └── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ ├── create_pipeline │ │ │ │ │ │ │ ├── datapipeline.CreatePipeline_1.json │ │ │ │ │ │ │ ├── datapipeline.DeletePipeline_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_2.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_3.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_4.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_5.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_6.json │ │ │ │ │ │ │ ├── datapipeline.ListPipelines_1.json │ │ │ │ │ │ │ └── datapipeline.ListPipelines_2.json │ │ │ │ │ │ ├── create_pipeline_already_exists │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_2.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_3.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_4.json │ │ │ │ │ │ │ ├── datapipeline.GetPipelineDefinition_1.json │ │ │ │ │ │ │ └── datapipeline.ListPipelines_1.json │ │ │ │ │ │ ├── create_pipeline_with_tags │ │ │ │ │ │ │ ├── datapipeline.CreatePipeline_1.json │ │ │ │ │ │ │ ├── datapipeline.DeletePipeline_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_2.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_3.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_4.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_5.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_6.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_7.json │ │ │ │ │ │ │ ├── datapipeline.ListPipelines_1.json │ │ │ │ │ │ │ └── datapipeline.ListPipelines_2.json │ │ │ │ │ │ ├── deactivate_pipeline │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_2.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_3.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_4.json │ │ │ │ │ │ │ └── datapipeline.ListPipelines_1.json │ │ │ │ │ │ ├── define_pipeline │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ │ └── datapipeline.PutPipelineDefinition_1.json │ │ │ │ │ │ ├── delete_nonexistent_pipeline │ │ │ │ │ │ │ └── datapipeline.ListPipelines_1.json │ │ │ │ │ │ ├── delete_pipeline │ │ │ │ │ │ │ ├── datapipeline.CreatePipeline_1.json │ │ │ │ │ │ │ ├── datapipeline.DeletePipeline_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_2.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_3.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_4.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_5.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_6.json │ │ │ │ │ │ │ ├── datapipeline.DescribePipelines_7.json │ │ │ │ │ │ │ ├── datapipeline.ListPipelines_1.json │ │ │ │ │ │ │ └── datapipeline.ListPipelines_2.json │ │ │ │ │ │ ├── pipeline_description │ │ │ │ │ │ │ └── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ ├── pipeline_description_nonexistent │ │ │ │ │ │ │ └── datapipeline.DescribePipelines_1.json │ │ │ │ │ │ └── pipeline_field │ │ │ │ │ │ │ └── datapipeline.DescribePipelines_1.json │ │ │ │ │ └── ec2_vpc_vpn │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── add_routes │ │ │ │ │ │ ├── ec2.CreateVpnConnectionRoute_1.json │ │ │ │ │ │ ├── ec2.CreateVpnConnectionRoute_2.json │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_17.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_18.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_19.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_20.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── add_tags │ │ │ │ │ │ ├── ec2.CreateTags_1.json │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_17.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── check_for_update_nonmodifiable_attr │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── check_for_update_tags │ │ │ │ │ │ ├── ec2.CreateTags_1.json │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_17.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── create_connection │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── create_connection_that_exists │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_17.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_18.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_19.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_20.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── delete_connection │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── delete_nonexistent_connection │ │ │ │ │ │ └── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── find_connection_filters │ │ │ │ │ │ ├── ec2.CreateTags_1.json │ │ │ │ │ │ ├── ec2.CreateTags_2.json │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.CreateVpnConnection_2.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_17.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_18.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_19.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_20.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_21.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_22.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_23.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_24.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_25.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_26.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_27.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_28.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_29.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_30.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_31.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_32.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_33.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_34.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_35.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_36.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── find_connection_insufficient_filters │ │ │ │ │ │ ├── ec2.CreateTags_1.json │ │ │ │ │ │ ├── ec2.CreateTags_2.json │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.CreateVpnConnection_2.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_17.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_18.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_19.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_20.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_21.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_22.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_23.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_24.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_25.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_26.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_27.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_28.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_29.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_30.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_31.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── find_connection_nonexistent │ │ │ │ │ │ └── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── find_connection_vpc_conn_id │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.CreateVpnConnection_2.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_17.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_18.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_19.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_20.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_21.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_22.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_23.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_24.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_25.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_26.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_27.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_28.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_29.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_30.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_31.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_32.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_33.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ ├── modify_deleted_connection │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ │ └── remove_tags │ │ │ │ │ │ ├── ec2.CreateVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DeleteTags_1.json │ │ │ │ │ │ ├── ec2.DeleteVpnConnection_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_1.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_10.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_11.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_12.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_13.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_14.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_15.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_16.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_2.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_3.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_4.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_5.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_6.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_7.json │ │ │ │ │ │ ├── ec2.DescribeVpnConnections_8.json │ │ │ │ │ │ └── ec2.DescribeVpnConnections_9.json │ │ │ │ │ ├── test_aws_acm.py │ │ │ │ │ ├── test_aws_api_gateway.py │ │ │ │ │ ├── test_aws_direct_connect_confirm_connection.py │ │ │ │ │ ├── test_aws_direct_connect_connection.py │ │ │ │ │ ├── test_aws_direct_connect_link_aggregation_group.py │ │ │ │ │ ├── test_aws_direct_connect_virtual_interface.py │ │ │ │ │ ├── test_data_pipeline.py │ │ │ │ │ ├── test_ec2_vpc_vpn.py │ │ │ │ │ ├── test_ec2_win_password.py │ │ │ │ │ ├── test_iam_password_policy.py │ │ │ │ │ ├── test_lambda.py │ │ │ │ │ ├── test_lambda_policy.py │ │ │ │ │ ├── test_redshift_cross_region_snapshots.py │ │ │ │ │ ├── test_route53_zone.py │ │ │ │ │ ├── test_s3_bucket_notification.py │ │ │ │ │ └── utils.py │ │ │ └── requirements.txt │ │ │ └── utils │ │ │ └── shippable │ │ │ ├── aws.sh │ │ │ ├── check_matrix.py │ │ │ ├── sanity.sh │ │ │ ├── shippable.sh │ │ │ ├── timing.py │ │ │ ├── timing.sh │ │ │ └── units.sh │ ├── redhat │ │ ├── insights │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── ansible-test.yml │ │ │ │ │ └── galaxy-release.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── FILES.json │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.json │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── create_docs.yml │ │ │ │ ├── insights_config.md │ │ │ │ ├── insights_register.md │ │ │ │ ├── inventory.md │ │ │ │ └── templates │ │ │ │ │ ├── docs.md.j2 │ │ │ │ │ └── inventory.md.j2 │ │ │ ├── galaxy.yml.j2 │ │ │ ├── plugins │ │ │ │ ├── action │ │ │ │ │ └── insights_config.py │ │ │ │ ├── inventory │ │ │ │ │ └── insights.py │ │ │ │ └── modules │ │ │ │ │ ├── insights_config.py │ │ │ │ │ └── insights_register.py │ │ │ ├── release.yml │ │ │ ├── roles │ │ │ │ ├── compliance │ │ │ │ │ ├── README.md │ │ │ │ │ ├── meta │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── tasks │ │ │ │ │ │ ├── install.yml │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ └── run.yml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── compliance.yml │ │ │ │ │ │ ├── install-only.yml │ │ │ │ │ │ └── run-only.yml │ │ │ │ └── insights_client │ │ │ │ │ ├── .yamllint │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── files │ │ │ │ │ └── insights.fact │ │ │ │ │ ├── handlers │ │ │ │ │ └── main.yml │ │ │ │ │ ├── meta │ │ │ │ │ └── main.yml │ │ │ │ │ ├── molecule │ │ │ │ │ ├── README.md │ │ │ │ │ └── default │ │ │ │ │ │ ├── INSTALL.rst │ │ │ │ │ │ ├── create.yml │ │ │ │ │ │ ├── destroy.yml │ │ │ │ │ │ ├── molecule.yml │ │ │ │ │ │ ├── playbook.yml │ │ │ │ │ │ ├── prepare.yml │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── test_default.py │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── tests │ │ │ │ │ └── example-insights-client-playbook.yml │ │ │ └── tests │ │ │ │ ├── inventory │ │ │ │ └── insights.yml │ │ │ │ └── sanity │ │ │ │ ├── ignore-2.10.txt │ │ │ │ └── ignore-2.11.txt │ │ └── satellite │ │ │ ├── CHANGELOG.rst │ │ │ ├── FILES.json │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.json │ │ │ ├── README.md │ │ │ ├── changelogs │ │ │ └── changelog.yaml │ │ │ ├── meta │ │ │ └── runtime.yml │ │ │ ├── plugins │ │ │ ├── callback │ │ │ │ └── foreman.py │ │ │ ├── doc_fragments │ │ │ │ └── foreman.py │ │ │ ├── filter │ │ │ │ └── foreman.py │ │ │ ├── inventory │ │ │ │ └── foreman.py │ │ │ ├── module_utils │ │ │ │ ├── _apypie.py │ │ │ │ └── foreman_helper.py │ │ │ └── modules │ │ │ │ ├── activation_key.py │ │ │ │ ├── architecture.py │ │ │ │ ├── auth_source_ldap.py │ │ │ │ ├── bookmark.py │ │ │ │ ├── compute_attribute.py │ │ │ │ ├── compute_profile.py │ │ │ │ ├── compute_resource.py │ │ │ │ ├── config_group.py │ │ │ │ ├── content_credential.py │ │ │ │ ├── content_upload.py │ │ │ │ ├── content_view.py │ │ │ │ ├── content_view_filter.py │ │ │ │ ├── content_view_version.py │ │ │ │ ├── domain.py │ │ │ │ ├── external_usergroup.py │ │ │ │ ├── global_parameter.py │ │ │ │ ├── hardware_model.py │ │ │ │ ├── host.py │ │ │ │ ├── host_collection.py │ │ │ │ ├── host_power.py │ │ │ │ ├── hostgroup.py │ │ │ │ ├── http_proxy.py │ │ │ │ ├── image.py │ │ │ │ ├── installation_medium.py │ │ │ │ ├── job_invocation.py │ │ │ │ ├── job_template.py │ │ │ │ ├── lifecycle_environment.py │ │ │ │ ├── location.py │ │ │ │ ├── operatingsystem.py │ │ │ │ ├── organization.py │ │ │ │ ├── os_default_template.py │ │ │ │ ├── partition_table.py │ │ │ │ ├── product.py │ │ │ │ ├── provisioning_template.py │ │ │ │ ├── puppet_environment.py │ │ │ │ ├── realm.py │ │ │ │ ├── redhat_manifest.py │ │ │ │ ├── repository.py │ │ │ │ ├── repository_set.py │ │ │ │ ├── repository_sync.py │ │ │ │ ├── resource_info.py │ │ │ │ ├── role.py │ │ │ │ ├── scap_content.py │ │ │ │ ├── scap_tailoring_file.py │ │ │ │ ├── setting.py │ │ │ │ ├── smart_class_parameter.py │ │ │ │ ├── smart_proxy.py │ │ │ │ ├── status_info.py │ │ │ │ ├── subnet.py │ │ │ │ ├── subscription_manifest.py │ │ │ │ ├── sync_plan.py │ │ │ │ ├── templates_import.py │ │ │ │ ├── user.py │ │ │ │ └── usergroup.py │ │ │ ├── requirements.txt │ │ │ └── roles │ │ │ ├── content_view_version_cleanup │ │ │ ├── README.md │ │ │ └── tasks │ │ │ │ ├── delete_cv_versions.yml │ │ │ │ ├── find_and_delete_unused_cv_versions.yml │ │ │ │ └── main.yml │ │ │ └── manifest │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ └── main.yml │ │ │ └── tasks │ │ │ └── main.yml │ ├── redhat_cop │ │ └── tower_configuration │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.rst │ │ │ ├── FILES.json │ │ │ ├── MANIFEST.json │ │ │ ├── README.md │ │ │ ├── STANDARDS.md │ │ │ ├── changelogs │ │ │ ├── .plugin-cache.yaml │ │ │ ├── changelog.yaml │ │ │ ├── config.yaml │ │ │ └── fragments │ │ │ │ └── .gitkeep │ │ │ ├── playbooks │ │ │ ├── configure_tower.yml │ │ │ ├── configure_tower_export_model.yml │ │ │ ├── tower_configs │ │ │ │ ├── ssh_private_key.yml │ │ │ │ ├── tower_applications.yml │ │ │ │ ├── tower_auth.yml │ │ │ │ ├── tower_credential_input_sources.yml │ │ │ │ ├── tower_credential_types.yml │ │ │ │ ├── tower_credentials.yml │ │ │ │ ├── tower_groups.yml │ │ │ │ ├── tower_hosts.yml │ │ │ │ ├── tower_instance_groups.yml │ │ │ │ ├── tower_inventories.yml │ │ │ │ ├── tower_inventory_sources.yml │ │ │ │ ├── tower_labels.yml │ │ │ │ ├── tower_notifications.yml │ │ │ │ ├── tower_organizations.yml │ │ │ │ ├── tower_projects.yml │ │ │ │ ├── tower_rbac.yml │ │ │ │ ├── tower_schedule.yml │ │ │ │ ├── tower_settings.yml │ │ │ │ ├── tower_settings_individuale.yml │ │ │ │ ├── tower_teams.yml │ │ │ │ ├── tower_templates.yml │ │ │ │ ├── tower_user_accounts.yml │ │ │ │ └── tower_workflows.yml │ │ │ └── tower_configs_export_model │ │ │ │ ├── README.md │ │ │ │ ├── credential_types_export.yml │ │ │ │ ├── credentials_export.yml │ │ │ │ ├── inventory_export.yml │ │ │ │ ├── inventory_sources_export.yml │ │ │ │ ├── job_templates_export.yml │ │ │ │ ├── notifications_templates_export.yml │ │ │ │ ├── organizations_export.yml │ │ │ │ ├── projects_export.yml │ │ │ │ ├── teams_export.yml │ │ │ │ ├── tower_workflows.yml │ │ │ │ └── users_export.yml │ │ │ ├── plugins │ │ │ └── README.md │ │ │ └── roles │ │ │ ├── applications │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── extra_vars.yml │ │ │ ├── credential_input_sources │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── cred_input_src.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── credential_types │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── credential_types.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── credentials │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── credentials.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── groups │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── group.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── hosts │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── host.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── instance_groups │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ └── tasks │ │ │ │ └── main.yml │ │ │ ├── inventories │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ ├── tests │ │ │ │ ├── configs │ │ │ │ │ └── tower-inventories.yml │ │ │ │ └── test.yml │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── inventory_sources │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ ├── tests │ │ │ │ ├── configs │ │ │ │ │ └── tower-inventory-sources.yml │ │ │ │ └── test.yml │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── job_templates │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── templates.json │ │ │ │ ├── template_surveys │ │ │ │ └── basic_survey.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── extra_vars.yml │ │ │ ├── labels │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ ├── tests │ │ │ │ ├── configs │ │ │ │ │ └── tower_labels.yml │ │ │ │ └── test.yml │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── license │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── license.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── master_role_example │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── extra_vars.yml │ │ │ ├── notification_templates │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── notifications.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── organizations │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── organizations.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── projects │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── projects.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower_secrets.yml │ │ │ ├── schedules │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── schedules.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower_secrets.yml │ │ │ ├── teams │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ ├── tests │ │ │ │ ├── configs │ │ │ │ │ └── tower_teams.yml │ │ │ │ └── test.yml │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ ├── tower_role │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── configs │ │ │ │ └── rbac.json │ │ │ │ └── test.yml │ │ │ ├── tower_settings │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── configs │ │ │ │ └── tower_settings.yml │ │ │ │ └── test.yml │ │ │ ├── users │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── tests │ │ │ │ ├── collections │ │ │ │ └── requirements.yml │ │ │ │ ├── json │ │ │ │ └── user.json │ │ │ │ ├── test.yml │ │ │ │ └── vars │ │ │ │ └── tower-secrets.yml │ │ │ └── workflow_job_templates │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ └── main.yml │ │ │ ├── meta │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ ├── add_workflows_schema.yml │ │ │ └── main.yml │ │ │ └── tests │ │ │ ├── collections │ │ │ └── requirements.yml │ │ │ ├── test.yaml │ │ │ └── yaml │ │ │ ├── extra_vars.yaml │ │ │ └── tower_workflows.yml │ └── theforeman │ │ └── foreman │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── codeql-analysis.yml │ │ │ ├── docs.yml │ │ │ ├── main.yml │ │ │ └── release.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .yamllint │ │ ├── CHANGELOG.rst │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── changelogs │ │ ├── changelog.yaml │ │ ├── config.yaml │ │ └── fragments │ │ │ ├── .git-keep │ │ │ ├── 1027-repositories_role.yml │ │ │ ├── 1045-host-owner.yml │ │ │ ├── 1065-sync-plans_role.yml │ │ │ ├── 1068-activation-keys_role.yml │ │ │ ├── 1087-content_view_version-safenet.yml │ │ │ ├── 1090-scope_kickstart_repository_tighter.yml │ │ │ ├── 1095-nested_list-lookup-fix.yml │ │ │ ├── 1096-lifecycle-environments-role.yml │ │ │ ├── 541-activation-key-upstream-pool.yml │ │ │ ├── bz1901716-dont_scope_requests.yml │ │ │ ├── host-hostgroup-ak-parameter.yml │ │ │ └── resource_info-params-id.yml │ │ ├── docs │ │ ├── CHANGELOG.rst │ │ ├── Makefile │ │ ├── README.md │ │ ├── _gh_include │ │ │ ├── footer.inc │ │ │ └── header.inc │ │ ├── api.rst │ │ ├── conf.py │ │ ├── cvmanager.md │ │ ├── developing.md │ │ ├── filters.rst │ │ ├── index.rst │ │ ├── releasing.md │ │ ├── requirements.txt │ │ ├── roles.rst.template │ │ └── testing.md │ │ ├── galaxy.yml │ │ ├── meta │ │ └── runtime.yml │ │ ├── plugins │ │ ├── __init__.py │ │ ├── callback │ │ │ └── foreman.py │ │ ├── doc_fragments │ │ │ └── foreman.py │ │ ├── filter │ │ │ └── foreman.py │ │ ├── inventory │ │ │ └── foreman.py │ │ ├── module_utils │ │ │ ├── __init__.py │ │ │ ├── _apypie.py │ │ │ └── foreman_helper.py │ │ └── modules │ │ │ ├── __init__.py │ │ │ ├── activation_key.py │ │ │ ├── architecture.py │ │ │ ├── auth_source_ldap.py │ │ │ ├── bookmark.py │ │ │ ├── compute_attribute.py │ │ │ ├── compute_profile.py │ │ │ ├── compute_resource.py │ │ │ ├── config_group.py │ │ │ ├── content_credential.py │ │ │ ├── content_upload.py │ │ │ ├── content_view.py │ │ │ ├── content_view_filter.py │ │ │ ├── content_view_version.py │ │ │ ├── domain.py │ │ │ ├── external_usergroup.py │ │ │ ├── global_parameter.py │ │ │ ├── hardware_model.py │ │ │ ├── host.py │ │ │ ├── host_collection.py │ │ │ ├── host_info.py │ │ │ ├── host_power.py │ │ │ ├── hostgroup.py │ │ │ ├── http_proxy.py │ │ │ ├── image.py │ │ │ ├── installation_medium.py │ │ │ ├── job_invocation.py │ │ │ ├── job_template.py │ │ │ ├── lifecycle_environment.py │ │ │ ├── location.py │ │ │ ├── operatingsystem.py │ │ │ ├── organization.py │ │ │ ├── os_default_template.py │ │ │ ├── partition_table.py │ │ │ ├── product.py │ │ │ ├── provisioning_template.py │ │ │ ├── puppet_environment.py │ │ │ ├── puppetclasses_import.py │ │ │ ├── realm.py │ │ │ ├── redhat_manifest.py │ │ │ ├── repository.py │ │ │ ├── repository_info.py │ │ │ ├── repository_set.py │ │ │ ├── repository_sync.py │ │ │ ├── resource_info.py │ │ │ ├── role.py │ │ │ ├── scap_content.py │ │ │ ├── scap_tailoring_file.py │ │ │ ├── scc_account.py │ │ │ ├── scc_product.py │ │ │ ├── setting.py │ │ │ ├── smart_class_parameter.py │ │ │ ├── smart_proxy.py │ │ │ ├── snapshot.py │ │ │ ├── status_info.py │ │ │ ├── subnet.py │ │ │ ├── subscription_manifest.py │ │ │ ├── sync_plan.py │ │ │ ├── templates_import.py │ │ │ ├── user.py │ │ │ └── usergroup.py │ │ ├── requirements-dev.txt │ │ ├── requirements-lint.txt │ │ ├── requirements.txt │ │ ├── roles │ │ ├── activation_keys │ │ │ ├── README.md │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── content_view_version_cleanup │ │ │ ├── README.md │ │ │ └── tasks │ │ │ │ ├── delete_cv_versions.yml │ │ │ │ ├── find_and_delete_unused_cv_versions.yml │ │ │ │ └── main.yml │ │ ├── lifecycle_environments │ │ │ ├── README.md │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── manifest │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── repositories │ │ │ ├── README.md │ │ │ └── tasks │ │ │ │ └── main.yml │ │ └── sync_plans │ │ │ ├── README.md │ │ │ └── tasks │ │ │ └── main.yml │ │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── fixtures │ │ │ └── apidoc │ │ │ │ ├── activation_key.json │ │ │ │ ├── activation_keys_role.json │ │ │ │ ├── architecture.json │ │ │ │ ├── auth_source_ldap.json │ │ │ │ ├── bookmark.json │ │ │ │ ├── compute_attribute.json │ │ │ │ ├── compute_profile.json │ │ │ │ ├── compute_resource.json │ │ │ │ ├── config_group.json │ │ │ │ ├── content_credential.json │ │ │ │ ├── content_upload.json │ │ │ │ ├── content_upload_deb.json │ │ │ │ ├── content_view.json │ │ │ │ ├── content_view_filter.json │ │ │ │ ├── content_view_version.json │ │ │ │ ├── content_view_version_cleanup_role.json │ │ │ │ ├── domain.json │ │ │ │ ├── external_usergroup.json │ │ │ │ ├── filters.json │ │ │ │ ├── foreman.json │ │ │ │ ├── global_parameter.json │ │ │ │ ├── hardware_model.json │ │ │ │ ├── host.json │ │ │ │ ├── host_collection.json │ │ │ │ ├── host_info.json │ │ │ │ ├── host_interface_attributes.json │ │ │ │ ├── host_power.json │ │ │ │ ├── hostgroup.json │ │ │ │ ├── http_proxy.json │ │ │ │ ├── image.json │ │ │ │ ├── installation_medium.json │ │ │ │ ├── inventory_plugin.json │ │ │ │ ├── inventory_plugin_ansible.json │ │ │ │ ├── job_invocation.json │ │ │ │ ├── job_template.json │ │ │ │ ├── katello.json │ │ │ │ ├── katello_hostgroup.json │ │ │ │ ├── katello_smart_proxy.json │ │ │ │ ├── lifecycle_environment.json │ │ │ │ ├── lifecycle_environments_role.json │ │ │ │ ├── location.json │ │ │ │ ├── luna.json │ │ │ │ ├── luna_hostgroup.json │ │ │ │ ├── manifest_role.json │ │ │ │ ├── operatingsystem.json │ │ │ │ ├── organization.json │ │ │ │ ├── os_default_template.json │ │ │ │ ├── partition_table.json │ │ │ │ ├── product.json │ │ │ │ ├── provisioning_template.json │ │ │ │ ├── puppet_environment.json │ │ │ │ ├── puppetclasses_import.json │ │ │ │ ├── realm.json │ │ │ │ ├── redhat_manifest.json │ │ │ │ ├── repositories_role.json │ │ │ │ ├── repository.json │ │ │ │ ├── repository_deb.json │ │ │ │ ├── repository_info.json │ │ │ │ ├── repository_set.json │ │ │ │ ├── repository_sync.json │ │ │ │ ├── resource_info.json │ │ │ │ ├── role.json │ │ │ │ ├── scap_content.json │ │ │ │ ├── scap_tailoring_file.json │ │ │ │ ├── scc_account.json │ │ │ │ ├── scc_manager.json │ │ │ │ ├── scc_product.json │ │ │ │ ├── scc_product_old.json │ │ │ │ ├── setting.json │ │ │ │ ├── smart_class_parameter.json │ │ │ │ ├── smart_proxy.json │ │ │ │ ├── snapshot.json │ │ │ │ ├── status_info.json │ │ │ │ ├── subnet.json │ │ │ │ ├── subscription_manifest.json │ │ │ │ ├── sync_plan.json │ │ │ │ ├── sync_plans_role.json │ │ │ │ ├── templates_import.json │ │ │ │ ├── user.json │ │ │ │ └── usergroup.json │ │ ├── inventory │ │ │ ├── hosts │ │ │ ├── inventory_plugin.foreman.yml │ │ │ └── inventory_plugin_ansible.foreman.yml │ │ ├── test_crud.py │ │ ├── test_foreman_spec_helper.py │ │ ├── test_module_state.py │ │ ├── test_playbooks │ │ │ ├── activation_key.yml │ │ │ ├── activation_keys_role.yml │ │ │ ├── architecture.yml │ │ │ ├── auth_source_ldap.yml │ │ │ ├── bookmark.yml │ │ │ ├── compute_attribute.yml │ │ │ ├── compute_profile.yml │ │ │ ├── compute_resource.yml │ │ │ ├── config_group.yml │ │ │ ├── content_credential.yml │ │ │ ├── content_upload.yml │ │ │ ├── content_upload_deb.yml │ │ │ ├── content_view.yml │ │ │ ├── content_view_filter.yml │ │ │ ├── content_view_version.yml │ │ │ ├── content_view_version_cleanup_role.yml │ │ │ ├── data │ │ │ │ ├── ansible_hello.erb │ │ │ │ ├── bear-4.1-1.noarch.rpm │ │ │ │ ├── delete_file.erb │ │ │ │ ├── file_repo_test.txt │ │ │ │ ├── gpg_key.asc │ │ │ │ ├── gpg_key2.asc │ │ │ │ ├── manifest_foreman-ansible-modules.zip │ │ │ │ ├── odin_1.0_ppc64.deb │ │ │ │ ├── ssg-firefox-ds-tailoring.xml │ │ │ │ └── ssg-firefox-ds.xml │ │ │ ├── domain.yml │ │ │ ├── external_usergroup.yml │ │ │ ├── filters.yml │ │ │ ├── fixtures │ │ │ │ ├── activation_key-0.yml │ │ │ │ ├── activation_key-1.yml │ │ │ │ ├── activation_key-10.yml │ │ │ │ ├── activation_key-11.yml │ │ │ │ ├── activation_key-12.yml │ │ │ │ ├── activation_key-13.yml │ │ │ │ ├── activation_key-14.yml │ │ │ │ ├── activation_key-15.yml │ │ │ │ ├── activation_key-16.yml │ │ │ │ ├── activation_key-17.yml │ │ │ │ ├── activation_key-18.yml │ │ │ │ ├── activation_key-19.yml │ │ │ │ ├── activation_key-2.yml │ │ │ │ ├── activation_key-20.yml │ │ │ │ ├── activation_key-21.yml │ │ │ │ ├── activation_key-22.yml │ │ │ │ ├── activation_key-23.yml │ │ │ │ ├── activation_key-24.yml │ │ │ │ ├── activation_key-25.yml │ │ │ │ ├── activation_key-26.yml │ │ │ │ ├── activation_key-27.yml │ │ │ │ ├── activation_key-28.yml │ │ │ │ ├── activation_key-29.yml │ │ │ │ ├── activation_key-3.yml │ │ │ │ ├── activation_key-30.yml │ │ │ │ ├── activation_key-31.yml │ │ │ │ ├── activation_key-32.yml │ │ │ │ ├── activation_key-4.yml │ │ │ │ ├── activation_key-5.yml │ │ │ │ ├── activation_key-6.yml │ │ │ │ ├── activation_key-7.yml │ │ │ │ ├── activation_key-8.yml │ │ │ │ ├── activation_key-9.yml │ │ │ │ ├── activation_keys_role-0.yml │ │ │ │ ├── activation_keys_role-1.yml │ │ │ │ ├── architecture-0.yml │ │ │ │ ├── architecture-1.yml │ │ │ │ ├── architecture-10.yml │ │ │ │ ├── architecture-11.yml │ │ │ │ ├── architecture-2.yml │ │ │ │ ├── architecture-3.yml │ │ │ │ ├── architecture-4.yml │ │ │ │ ├── architecture-5.yml │ │ │ │ ├── architecture-6.yml │ │ │ │ ├── architecture-7.yml │ │ │ │ ├── architecture-8.yml │ │ │ │ ├── architecture-9.yml │ │ │ │ ├── auth_source_ldap-0.yml │ │ │ │ ├── auth_source_ldap-1.yml │ │ │ │ ├── auth_source_ldap-2.yml │ │ │ │ ├── auth_source_ldap-3.yml │ │ │ │ ├── auth_source_ldap-4.yml │ │ │ │ ├── auth_source_ldap-5.yml │ │ │ │ ├── auth_source_ldap-6.yml │ │ │ │ ├── bookmark-0.yml │ │ │ │ ├── bookmark-1.yml │ │ │ │ ├── bookmark-2.yml │ │ │ │ ├── bookmark-3.yml │ │ │ │ ├── bookmark-4.yml │ │ │ │ ├── bookmark-5.yml │ │ │ │ ├── bookmark-6.yml │ │ │ │ ├── compute_attribute-0.yml │ │ │ │ ├── compute_attribute-1.yml │ │ │ │ ├── compute_attribute-2.yml │ │ │ │ ├── compute_attribute-3.yml │ │ │ │ ├── compute_profile-0.yml │ │ │ │ ├── compute_profile-1.yml │ │ │ │ ├── compute_profile-2.yml │ │ │ │ ├── compute_profile-3.yml │ │ │ │ ├── compute_profile-4.yml │ │ │ │ ├── compute_profile-5.yml │ │ │ │ ├── compute_profile-6.yml │ │ │ │ ├── compute_profile-7.yml │ │ │ │ ├── compute_profile-8.yml │ │ │ │ ├── compute_resource-0.yml │ │ │ │ ├── compute_resource-1.yml │ │ │ │ ├── compute_resource-2.yml │ │ │ │ ├── compute_resource-3.yml │ │ │ │ ├── compute_resource-4.yml │ │ │ │ ├── compute_resource-5.yml │ │ │ │ ├── compute_resource-6.yml │ │ │ │ ├── compute_resource-7.yml │ │ │ │ ├── config_group-0.yml │ │ │ │ ├── config_group-1.yml │ │ │ │ ├── config_group-10.yml │ │ │ │ ├── config_group-11.yml │ │ │ │ ├── config_group-2.yml │ │ │ │ ├── config_group-3.yml │ │ │ │ ├── config_group-4.yml │ │ │ │ ├── config_group-5.yml │ │ │ │ ├── config_group-6.yml │ │ │ │ ├── config_group-7.yml │ │ │ │ ├── config_group-8.yml │ │ │ │ ├── config_group-9.yml │ │ │ │ ├── content_credential-0.yml │ │ │ │ ├── content_credential-1.yml │ │ │ │ ├── content_credential-2.yml │ │ │ │ ├── content_credential-3.yml │ │ │ │ ├── content_credential-4.yml │ │ │ │ ├── content_credential-5.yml │ │ │ │ ├── content_credential-6.yml │ │ │ │ ├── content_credential-7.yml │ │ │ │ ├── content_upload-0.yml │ │ │ │ ├── content_upload-1.yml │ │ │ │ ├── content_upload-2.yml │ │ │ │ ├── content_upload-3.yml │ │ │ │ ├── content_upload_deb-0.yml │ │ │ │ ├── content_upload_deb-1.yml │ │ │ │ ├── content_view-0.yml │ │ │ │ ├── content_view-1.yml │ │ │ │ ├── content_view-10.yml │ │ │ │ ├── content_view-11.yml │ │ │ │ ├── content_view-12.yml │ │ │ │ ├── content_view-13.yml │ │ │ │ ├── content_view-14.yml │ │ │ │ ├── content_view-15.yml │ │ │ │ ├── content_view-16.yml │ │ │ │ ├── content_view-17.yml │ │ │ │ ├── content_view-18.yml │ │ │ │ ├── content_view-19.yml │ │ │ │ ├── content_view-2.yml │ │ │ │ ├── content_view-3.yml │ │ │ │ ├── content_view-4.yml │ │ │ │ ├── content_view-5.yml │ │ │ │ ├── content_view-6.yml │ │ │ │ ├── content_view-7.yml │ │ │ │ ├── content_view-8.yml │ │ │ │ ├── content_view-9.yml │ │ │ │ ├── content_view_filter-0.yml │ │ │ │ ├── content_view_filter-1.yml │ │ │ │ ├── content_view_filter-10.yml │ │ │ │ ├── content_view_filter-11.yml │ │ │ │ ├── content_view_filter-12.yml │ │ │ │ ├── content_view_filter-13.yml │ │ │ │ ├── content_view_filter-14.yml │ │ │ │ ├── content_view_filter-15.yml │ │ │ │ ├── content_view_filter-16.yml │ │ │ │ ├── content_view_filter-17.yml │ │ │ │ ├── content_view_filter-18.yml │ │ │ │ ├── content_view_filter-19.yml │ │ │ │ ├── content_view_filter-2.yml │ │ │ │ ├── content_view_filter-20.yml │ │ │ │ ├── content_view_filter-21.yml │ │ │ │ ├── content_view_filter-22.yml │ │ │ │ ├── content_view_filter-23.yml │ │ │ │ ├── content_view_filter-24.yml │ │ │ │ ├── content_view_filter-25.yml │ │ │ │ ├── content_view_filter-26.yml │ │ │ │ ├── content_view_filter-27.yml │ │ │ │ ├── content_view_filter-3.yml │ │ │ │ ├── content_view_filter-4.yml │ │ │ │ ├── content_view_filter-5.yml │ │ │ │ ├── content_view_filter-6.yml │ │ │ │ ├── content_view_filter-7.yml │ │ │ │ ├── content_view_filter-8.yml │ │ │ │ ├── content_view_filter-9.yml │ │ │ │ ├── content_view_version-0.yml │ │ │ │ ├── content_view_version-1.yml │ │ │ │ ├── content_view_version-2.yml │ │ │ │ ├── content_view_version-3.yml │ │ │ │ ├── content_view_version-4.yml │ │ │ │ ├── content_view_version-5.yml │ │ │ │ ├── content_view_version-6.yml │ │ │ │ ├── content_view_version-7.yml │ │ │ │ ├── content_view_version-8.yml │ │ │ │ ├── content_view_version-9.yml │ │ │ │ ├── content_view_version_cleanup_role-0.yml │ │ │ │ ├── content_view_version_cleanup_role-1.yml │ │ │ │ ├── content_view_version_cleanup_role-2.yml │ │ │ │ ├── content_view_version_cleanup_role-3.yml │ │ │ │ ├── content_view_version_cleanup_role-4.yml │ │ │ │ ├── content_view_version_cleanup_role-5.yml │ │ │ │ ├── content_view_version_cleanup_role-6.yml │ │ │ │ ├── domain-0.yml │ │ │ │ ├── domain-1.yml │ │ │ │ ├── domain-10.yml │ │ │ │ ├── domain-11.yml │ │ │ │ ├── domain-12.yml │ │ │ │ ├── domain-13.yml │ │ │ │ ├── domain-14.yml │ │ │ │ ├── domain-15.yml │ │ │ │ ├── domain-16.yml │ │ │ │ ├── domain-17.yml │ │ │ │ ├── domain-18.yml │ │ │ │ ├── domain-19.yml │ │ │ │ ├── domain-2.yml │ │ │ │ ├── domain-3.yml │ │ │ │ ├── domain-4.yml │ │ │ │ ├── domain-5.yml │ │ │ │ ├── domain-6.yml │ │ │ │ ├── domain-7.yml │ │ │ │ ├── domain-8.yml │ │ │ │ ├── domain-9.yml │ │ │ │ ├── external_usergroup-0.yml │ │ │ │ ├── external_usergroup-1.yml │ │ │ │ ├── external_usergroup-2.yml │ │ │ │ ├── external_usergroup-3.yml │ │ │ │ ├── global_parameter-0.yml │ │ │ │ ├── global_parameter-1.yml │ │ │ │ ├── global_parameter-10.yml │ │ │ │ ├── global_parameter-11.yml │ │ │ │ ├── global_parameter-12.yml │ │ │ │ ├── global_parameter-13.yml │ │ │ │ ├── global_parameter-14.yml │ │ │ │ ├── global_parameter-15.yml │ │ │ │ ├── global_parameter-16.yml │ │ │ │ ├── global_parameter-17.yml │ │ │ │ ├── global_parameter-18.yml │ │ │ │ ├── global_parameter-19.yml │ │ │ │ ├── global_parameter-2.yml │ │ │ │ ├── global_parameter-20.yml │ │ │ │ ├── global_parameter-21.yml │ │ │ │ ├── global_parameter-22.yml │ │ │ │ ├── global_parameter-23.yml │ │ │ │ ├── global_parameter-24.yml │ │ │ │ ├── global_parameter-25.yml │ │ │ │ ├── global_parameter-26.yml │ │ │ │ ├── global_parameter-27.yml │ │ │ │ ├── global_parameter-3.yml │ │ │ │ ├── global_parameter-4.yml │ │ │ │ ├── global_parameter-5.yml │ │ │ │ ├── global_parameter-6.yml │ │ │ │ ├── global_parameter-7.yml │ │ │ │ ├── global_parameter-8.yml │ │ │ │ ├── global_parameter-9.yml │ │ │ │ ├── hardware_model-0.yml │ │ │ │ ├── hardware_model-1.yml │ │ │ │ ├── hardware_model-2.yml │ │ │ │ ├── hardware_model-3.yml │ │ │ │ ├── hardware_model-4.yml │ │ │ │ ├── hardware_model-5.yml │ │ │ │ ├── host-0.yml │ │ │ │ ├── host-1.yml │ │ │ │ ├── host-10.yml │ │ │ │ ├── host-11.yml │ │ │ │ ├── host-12.yml │ │ │ │ ├── host-13.yml │ │ │ │ ├── host-14.yml │ │ │ │ ├── host-15.yml │ │ │ │ ├── host-16.yml │ │ │ │ ├── host-17.yml │ │ │ │ ├── host-18.yml │ │ │ │ ├── host-19.yml │ │ │ │ ├── host-2.yml │ │ │ │ ├── host-20.yml │ │ │ │ ├── host-21.yml │ │ │ │ ├── host-22.yml │ │ │ │ ├── host-23.yml │ │ │ │ ├── host-24.yml │ │ │ │ ├── host-25.yml │ │ │ │ ├── host-26.yml │ │ │ │ ├── host-27.yml │ │ │ │ ├── host-28.yml │ │ │ │ ├── host-29.yml │ │ │ │ ├── host-3.yml │ │ │ │ ├── host-30.yml │ │ │ │ ├── host-31.yml │ │ │ │ ├── host-32.yml │ │ │ │ ├── host-4.yml │ │ │ │ ├── host-5.yml │ │ │ │ ├── host-6.yml │ │ │ │ ├── host-7.yml │ │ │ │ ├── host-8.yml │ │ │ │ ├── host-9.yml │ │ │ │ ├── host_collection-0.yml │ │ │ │ ├── host_collection-1.yml │ │ │ │ ├── host_collection-2.yml │ │ │ │ ├── host_collection-3.yml │ │ │ │ ├── host_collection-4.yml │ │ │ │ ├── host_collection-5.yml │ │ │ │ ├── host_collection-6.yml │ │ │ │ ├── host_collection-7.yml │ │ │ │ ├── host_collection-8.yml │ │ │ │ ├── host_info-0.yml │ │ │ │ ├── host_info-1.yml │ │ │ │ ├── host_interface_attributes-0.yml │ │ │ │ ├── host_interface_attributes-1.yml │ │ │ │ ├── host_interface_attributes-2.yml │ │ │ │ ├── host_interface_attributes-3.yml │ │ │ │ ├── host_interface_attributes-4.yml │ │ │ │ ├── host_interface_attributes-5.yml │ │ │ │ ├── host_interface_attributes-6.yml │ │ │ │ ├── host_interface_attributes-7.yml │ │ │ │ ├── host_interface_attributes-8.yml │ │ │ │ ├── host_interface_attributes-9.yml │ │ │ │ ├── host_power-0.yml │ │ │ │ ├── host_power-1.yml │ │ │ │ ├── host_power-2.yml │ │ │ │ ├── host_power-3.yml │ │ │ │ ├── host_power-4.yml │ │ │ │ ├── host_power-5.yml │ │ │ │ ├── host_power-6.yml │ │ │ │ ├── host_power-7.yml │ │ │ │ ├── hostgroup-0.yml │ │ │ │ ├── hostgroup-1.yml │ │ │ │ ├── hostgroup-10.yml │ │ │ │ ├── hostgroup-11.yml │ │ │ │ ├── hostgroup-12.yml │ │ │ │ ├── hostgroup-13.yml │ │ │ │ ├── hostgroup-14.yml │ │ │ │ ├── hostgroup-15.yml │ │ │ │ ├── hostgroup-16.yml │ │ │ │ ├── hostgroup-17.yml │ │ │ │ ├── hostgroup-18.yml │ │ │ │ ├── hostgroup-19.yml │ │ │ │ ├── hostgroup-2.yml │ │ │ │ ├── hostgroup-20.yml │ │ │ │ ├── hostgroup-21.yml │ │ │ │ ├── hostgroup-22.yml │ │ │ │ ├── hostgroup-23.yml │ │ │ │ ├── hostgroup-24.yml │ │ │ │ ├── hostgroup-25.yml │ │ │ │ ├── hostgroup-26.yml │ │ │ │ ├── hostgroup-27.yml │ │ │ │ ├── hostgroup-28.yml │ │ │ │ ├── hostgroup-29.yml │ │ │ │ ├── hostgroup-3.yml │ │ │ │ ├── hostgroup-30.yml │ │ │ │ ├── hostgroup-31.yml │ │ │ │ ├── hostgroup-32.yml │ │ │ │ ├── hostgroup-4.yml │ │ │ │ ├── hostgroup-5.yml │ │ │ │ ├── hostgroup-6.yml │ │ │ │ ├── hostgroup-7.yml │ │ │ │ ├── hostgroup-8.yml │ │ │ │ ├── hostgroup-9.yml │ │ │ │ ├── http_proxy-0.yml │ │ │ │ ├── http_proxy-1.yml │ │ │ │ ├── http_proxy-2.yml │ │ │ │ ├── http_proxy-3.yml │ │ │ │ ├── http_proxy-4.yml │ │ │ │ ├── http_proxy-5.yml │ │ │ │ ├── http_proxy-6.yml │ │ │ │ ├── http_proxy-7.yml │ │ │ │ ├── http_proxy-8.yml │ │ │ │ ├── http_proxy-9.yml │ │ │ │ ├── image-0.yml │ │ │ │ ├── image-1.yml │ │ │ │ ├── image-2.yml │ │ │ │ ├── image-3.yml │ │ │ │ ├── image-4.yml │ │ │ │ ├── image-5.yml │ │ │ │ ├── image-6.yml │ │ │ │ ├── image-7.yml │ │ │ │ ├── installation_medium-0.yml │ │ │ │ ├── installation_medium-1.yml │ │ │ │ ├── installation_medium-10.yml │ │ │ │ ├── installation_medium-11.yml │ │ │ │ ├── installation_medium-12.yml │ │ │ │ ├── installation_medium-13.yml │ │ │ │ ├── installation_medium-2.yml │ │ │ │ ├── installation_medium-3.yml │ │ │ │ ├── installation_medium-4.yml │ │ │ │ ├── installation_medium-5.yml │ │ │ │ ├── installation_medium-6.yml │ │ │ │ ├── installation_medium-7.yml │ │ │ │ ├── installation_medium-8.yml │ │ │ │ ├── installation_medium-9.yml │ │ │ │ ├── job_invocation-0.yml │ │ │ │ ├── job_invocation-1.yml │ │ │ │ ├── job_template-0.yml │ │ │ │ ├── job_template-1.yml │ │ │ │ ├── job_template-10.yml │ │ │ │ ├── job_template-11.yml │ │ │ │ ├── job_template-12.yml │ │ │ │ ├── job_template-13.yml │ │ │ │ ├── job_template-2.yml │ │ │ │ ├── job_template-3.yml │ │ │ │ ├── job_template-4.yml │ │ │ │ ├── job_template-5.yml │ │ │ │ ├── job_template-6.yml │ │ │ │ ├── job_template-7.yml │ │ │ │ ├── job_template-8.yml │ │ │ │ ├── job_template-9.yml │ │ │ │ ├── katello_hostgroup-0.yml │ │ │ │ ├── katello_hostgroup-1.yml │ │ │ │ ├── katello_hostgroup-2.yml │ │ │ │ ├── katello_hostgroup-3.yml │ │ │ │ ├── katello_smart_proxy-0.yml │ │ │ │ ├── katello_smart_proxy-1.yml │ │ │ │ ├── katello_smart_proxy-2.yml │ │ │ │ ├── katello_smart_proxy-3.yml │ │ │ │ ├── katello_smart_proxy-4.yml │ │ │ │ ├── katello_smart_proxy-5.yml │ │ │ │ ├── katello_smart_proxy-6.yml │ │ │ │ ├── katello_smart_proxy-7.yml │ │ │ │ ├── lifecycle_environment-0.yml │ │ │ │ ├── lifecycle_environment-1.yml │ │ │ │ ├── lifecycle_environment-10.yml │ │ │ │ ├── lifecycle_environment-2.yml │ │ │ │ ├── lifecycle_environment-3.yml │ │ │ │ ├── lifecycle_environment-4.yml │ │ │ │ ├── lifecycle_environment-5.yml │ │ │ │ ├── lifecycle_environment-6.yml │ │ │ │ ├── lifecycle_environment-7.yml │ │ │ │ ├── lifecycle_environment-8.yml │ │ │ │ ├── lifecycle_environment-9.yml │ │ │ │ ├── lifecycle_environments_role-0.yml │ │ │ │ ├── lifecycle_environments_role-1.yml │ │ │ │ ├── lifecycle_environments_role-2.yml │ │ │ │ ├── location-0.yml │ │ │ │ ├── location-1.yml │ │ │ │ ├── location-10.yml │ │ │ │ ├── location-11.yml │ │ │ │ ├── location-12.yml │ │ │ │ ├── location-13.yml │ │ │ │ ├── location-14.yml │ │ │ │ ├── location-15.yml │ │ │ │ ├── location-16.yml │ │ │ │ ├── location-17.yml │ │ │ │ ├── location-18.yml │ │ │ │ ├── location-19.yml │ │ │ │ ├── location-2.yml │ │ │ │ ├── location-20.yml │ │ │ │ ├── location-21.yml │ │ │ │ ├── location-22.yml │ │ │ │ ├── location-23.yml │ │ │ │ ├── location-24.yml │ │ │ │ ├── location-3.yml │ │ │ │ ├── location-4.yml │ │ │ │ ├── location-5.yml │ │ │ │ ├── location-6.yml │ │ │ │ ├── location-7.yml │ │ │ │ ├── location-8.yml │ │ │ │ ├── location-9.yml │ │ │ │ ├── luna_hostgroup-0.yml │ │ │ │ ├── luna_hostgroup-1.yml │ │ │ │ ├── luna_hostgroup-2.yml │ │ │ │ ├── luna_hostgroup-3.yml │ │ │ │ ├── manifest_role-0.yml │ │ │ │ ├── operatingsystem-0.yml │ │ │ │ ├── operatingsystem-1.yml │ │ │ │ ├── operatingsystem-10.yml │ │ │ │ ├── operatingsystem-11.yml │ │ │ │ ├── operatingsystem-12.yml │ │ │ │ ├── operatingsystem-13.yml │ │ │ │ ├── operatingsystem-14.yml │ │ │ │ ├── operatingsystem-2.yml │ │ │ │ ├── operatingsystem-3.yml │ │ │ │ ├── operatingsystem-4.yml │ │ │ │ ├── operatingsystem-5.yml │ │ │ │ ├── operatingsystem-6.yml │ │ │ │ ├── operatingsystem-7.yml │ │ │ │ ├── operatingsystem-8.yml │ │ │ │ ├── operatingsystem-9.yml │ │ │ │ ├── organization-0.yml │ │ │ │ ├── organization-1.yml │ │ │ │ ├── organization-10.yml │ │ │ │ ├── organization-11.yml │ │ │ │ ├── organization-12.yml │ │ │ │ ├── organization-13.yml │ │ │ │ ├── organization-14.yml │ │ │ │ ├── organization-15.yml │ │ │ │ ├── organization-16.yml │ │ │ │ ├── organization-2.yml │ │ │ │ ├── organization-3.yml │ │ │ │ ├── organization-4.yml │ │ │ │ ├── organization-5.yml │ │ │ │ ├── organization-6.yml │ │ │ │ ├── organization-7.yml │ │ │ │ ├── organization-8.yml │ │ │ │ ├── organization-9.yml │ │ │ │ ├── os_default_template-0.yml │ │ │ │ ├── os_default_template-1.yml │ │ │ │ ├── os_default_template-2.yml │ │ │ │ ├── os_default_template-3.yml │ │ │ │ ├── os_default_template-4.yml │ │ │ │ ├── os_default_template-5.yml │ │ │ │ ├── os_default_template-6.yml │ │ │ │ ├── os_default_template-7.yml │ │ │ │ ├── partition_table-0.yml │ │ │ │ ├── partition_table-1.yml │ │ │ │ ├── partition_table-10.yml │ │ │ │ ├── partition_table-11.yml │ │ │ │ ├── partition_table-12.yml │ │ │ │ ├── partition_table-13.yml │ │ │ │ ├── partition_table-14.yml │ │ │ │ ├── partition_table-15.yml │ │ │ │ ├── partition_table-16.yml │ │ │ │ ├── partition_table-17.yml │ │ │ │ ├── partition_table-18.yml │ │ │ │ ├── partition_table-19.yml │ │ │ │ ├── partition_table-2.yml │ │ │ │ ├── partition_table-20.yml │ │ │ │ ├── partition_table-3.yml │ │ │ │ ├── partition_table-4.yml │ │ │ │ ├── partition_table-5.yml │ │ │ │ ├── partition_table-6.yml │ │ │ │ ├── partition_table-7.yml │ │ │ │ ├── partition_table-8.yml │ │ │ │ ├── partition_table-9.yml │ │ │ │ ├── product-0.yml │ │ │ │ ├── product-1.yml │ │ │ │ ├── product-10.yml │ │ │ │ ├── product-11.yml │ │ │ │ ├── product-12.yml │ │ │ │ ├── product-2.yml │ │ │ │ ├── product-3.yml │ │ │ │ ├── product-4.yml │ │ │ │ ├── product-5.yml │ │ │ │ ├── product-6.yml │ │ │ │ ├── product-7.yml │ │ │ │ ├── product-8.yml │ │ │ │ ├── product-9.yml │ │ │ │ ├── provisioning_template-0.yml │ │ │ │ ├── provisioning_template-1.yml │ │ │ │ ├── provisioning_template-10.yml │ │ │ │ ├── provisioning_template-11.yml │ │ │ │ ├── provisioning_template-12.yml │ │ │ │ ├── provisioning_template-13.yml │ │ │ │ ├── provisioning_template-14.yml │ │ │ │ ├── provisioning_template-15.yml │ │ │ │ ├── provisioning_template-16.yml │ │ │ │ ├── provisioning_template-17.yml │ │ │ │ ├── provisioning_template-18.yml │ │ │ │ ├── provisioning_template-2.yml │ │ │ │ ├── provisioning_template-3.yml │ │ │ │ ├── provisioning_template-4.yml │ │ │ │ ├── provisioning_template-5.yml │ │ │ │ ├── provisioning_template-6.yml │ │ │ │ ├── provisioning_template-7.yml │ │ │ │ ├── provisioning_template-8.yml │ │ │ │ ├── provisioning_template-9.yml │ │ │ │ ├── puppet_environment-0.yml │ │ │ │ ├── puppet_environment-1.yml │ │ │ │ ├── puppet_environment-2.yml │ │ │ │ ├── puppet_environment-3.yml │ │ │ │ ├── puppet_environment-4.yml │ │ │ │ ├── puppet_environment-5.yml │ │ │ │ ├── puppetclasses_import-0.yml │ │ │ │ ├── puppetclasses_import-1.yml │ │ │ │ ├── realm-0.yml │ │ │ │ ├── realm-1.yml │ │ │ │ ├── realm-2.yml │ │ │ │ ├── realm-3.yml │ │ │ │ ├── redhat_manifest-0.yml │ │ │ │ ├── redhat_manifest-1.yml │ │ │ │ ├── redhat_manifest-2.yml │ │ │ │ ├── redhat_manifest-3.yml │ │ │ │ ├── redhat_manifest-4.yml │ │ │ │ ├── repositories_role-0.yml │ │ │ │ ├── repositories_role-1.yml │ │ │ │ ├── repositories_role-2.yml │ │ │ │ ├── repositories_role-3.yml │ │ │ │ ├── repositories_role-4.yml │ │ │ │ ├── repositories_role-5.yml │ │ │ │ ├── repositories_role-6.yml │ │ │ │ ├── repositories_role-7.yml │ │ │ │ ├── repository-0.yml │ │ │ │ ├── repository-1.yml │ │ │ │ ├── repository-10.yml │ │ │ │ ├── repository-11.yml │ │ │ │ ├── repository-12.yml │ │ │ │ ├── repository-13.yml │ │ │ │ ├── repository-14.yml │ │ │ │ ├── repository-15.yml │ │ │ │ ├── repository-16.yml │ │ │ │ ├── repository-2.yml │ │ │ │ ├── repository-3.yml │ │ │ │ ├── repository-4.yml │ │ │ │ ├── repository-5.yml │ │ │ │ ├── repository-6.yml │ │ │ │ ├── repository-7.yml │ │ │ │ ├── repository-8.yml │ │ │ │ ├── repository-9.yml │ │ │ │ ├── repository_deb-0.yml │ │ │ │ ├── repository_deb-1.yml │ │ │ │ ├── repository_deb-2.yml │ │ │ │ ├── repository_deb-3.yml │ │ │ │ ├── repository_info-0.yml │ │ │ │ ├── repository_info-1.yml │ │ │ │ ├── repository_set-0.yml │ │ │ │ ├── repository_set-1.yml │ │ │ │ ├── repository_set-10.yml │ │ │ │ ├── repository_set-11.yml │ │ │ │ ├── repository_set-12.yml │ │ │ │ ├── repository_set-2.yml │ │ │ │ ├── repository_set-3.yml │ │ │ │ ├── repository_set-4.yml │ │ │ │ ├── repository_set-5.yml │ │ │ │ ├── repository_set-6.yml │ │ │ │ ├── repository_set-7.yml │ │ │ │ ├── repository_set-8.yml │ │ │ │ ├── repository_set-9.yml │ │ │ │ ├── repository_sync-0.yml │ │ │ │ ├── repository_sync-1.yml │ │ │ │ ├── resource_info-0.yml │ │ │ │ ├── resource_info-1.yml │ │ │ │ ├── resource_info-2.yml │ │ │ │ ├── resource_info-3.yml │ │ │ │ ├── resource_info-4.yml │ │ │ │ ├── resource_info-5.yml │ │ │ │ ├── resource_info-6.yml │ │ │ │ ├── role-0.yml │ │ │ │ ├── role-1.yml │ │ │ │ ├── role-10.yml │ │ │ │ ├── role-11.yml │ │ │ │ ├── role-2.yml │ │ │ │ ├── role-3.yml │ │ │ │ ├── role-4.yml │ │ │ │ ├── role-5.yml │ │ │ │ ├── role-6.yml │ │ │ │ ├── role-7.yml │ │ │ │ ├── role-8.yml │ │ │ │ ├── role-9.yml │ │ │ │ ├── scap_content-0.yml │ │ │ │ ├── scap_content-1.yml │ │ │ │ ├── scap_content-2.yml │ │ │ │ ├── scap_content-3.yml │ │ │ │ ├── scap_content-4.yml │ │ │ │ ├── scap_content-5.yml │ │ │ │ ├── scap_tailoring_file-0.yml │ │ │ │ ├── scap_tailoring_file-1.yml │ │ │ │ ├── scap_tailoring_file-2.yml │ │ │ │ ├── scap_tailoring_file-3.yml │ │ │ │ ├── scap_tailoring_file-4.yml │ │ │ │ ├── scap_tailoring_file-5.yml │ │ │ │ ├── scc_account-0.yml │ │ │ │ ├── scc_account-1.yml │ │ │ │ ├── scc_account-2.yml │ │ │ │ ├── scc_account-3.yml │ │ │ │ ├── scc_account-4.yml │ │ │ │ ├── scc_account-5.yml │ │ │ │ ├── scc_account-6.yml │ │ │ │ ├── scc_account-7.yml │ │ │ │ ├── scc_account-8.yml │ │ │ │ ├── scc_product-0.yml │ │ │ │ ├── scc_product-1.yml │ │ │ │ ├── scc_product_old-0.yml │ │ │ │ ├── scc_product_old-1.yml │ │ │ │ ├── setting-0.yml │ │ │ │ ├── setting-1.yml │ │ │ │ ├── setting-2.yml │ │ │ │ ├── setting-3.yml │ │ │ │ ├── setting-4.yml │ │ │ │ ├── setting-5.yml │ │ │ │ ├── setting-6.yml │ │ │ │ ├── setting-7.yml │ │ │ │ ├── setting-8.yml │ │ │ │ ├── setting-9.yml │ │ │ │ ├── smart_class_parameter-0.yml │ │ │ │ ├── smart_class_parameter-1.yml │ │ │ │ ├── smart_class_parameter-10.yml │ │ │ │ ├── smart_class_parameter-11.yml │ │ │ │ ├── smart_class_parameter-12.yml │ │ │ │ ├── smart_class_parameter-13.yml │ │ │ │ ├── smart_class_parameter-14.yml │ │ │ │ ├── smart_class_parameter-15.yml │ │ │ │ ├── smart_class_parameter-16.yml │ │ │ │ ├── smart_class_parameter-17.yml │ │ │ │ ├── smart_class_parameter-18.yml │ │ │ │ ├── smart_class_parameter-19.yml │ │ │ │ ├── smart_class_parameter-2.yml │ │ │ │ ├── smart_class_parameter-20.yml │ │ │ │ ├── smart_class_parameter-21.yml │ │ │ │ ├── smart_class_parameter-22.yml │ │ │ │ ├── smart_class_parameter-23.yml │ │ │ │ ├── smart_class_parameter-24.yml │ │ │ │ ├── smart_class_parameter-25.yml │ │ │ │ ├── smart_class_parameter-26.yml │ │ │ │ ├── smart_class_parameter-27.yml │ │ │ │ ├── smart_class_parameter-28.yml │ │ │ │ ├── smart_class_parameter-29.yml │ │ │ │ ├── smart_class_parameter-3.yml │ │ │ │ ├── smart_class_parameter-30.yml │ │ │ │ ├── smart_class_parameter-31.yml │ │ │ │ ├── smart_class_parameter-32.yml │ │ │ │ ├── smart_class_parameter-33.yml │ │ │ │ ├── smart_class_parameter-34.yml │ │ │ │ ├── smart_class_parameter-35.yml │ │ │ │ ├── smart_class_parameter-36.yml │ │ │ │ ├── smart_class_parameter-37.yml │ │ │ │ ├── smart_class_parameter-38.yml │ │ │ │ ├── smart_class_parameter-39.yml │ │ │ │ ├── smart_class_parameter-4.yml │ │ │ │ ├── smart_class_parameter-40.yml │ │ │ │ ├── smart_class_parameter-41.yml │ │ │ │ ├── smart_class_parameter-42.yml │ │ │ │ ├── smart_class_parameter-43.yml │ │ │ │ ├── smart_class_parameter-44.yml │ │ │ │ ├── smart_class_parameter-45.yml │ │ │ │ ├── smart_class_parameter-46.yml │ │ │ │ ├── smart_class_parameter-47.yml │ │ │ │ ├── smart_class_parameter-48.yml │ │ │ │ ├── smart_class_parameter-49.yml │ │ │ │ ├── smart_class_parameter-5.yml │ │ │ │ ├── smart_class_parameter-50.yml │ │ │ │ ├── smart_class_parameter-51.yml │ │ │ │ ├── smart_class_parameter-52.yml │ │ │ │ ├── smart_class_parameter-53.yml │ │ │ │ ├── smart_class_parameter-54.yml │ │ │ │ ├── smart_class_parameter-55.yml │ │ │ │ ├── smart_class_parameter-56.yml │ │ │ │ ├── smart_class_parameter-57.yml │ │ │ │ ├── smart_class_parameter-58.yml │ │ │ │ ├── smart_class_parameter-6.yml │ │ │ │ ├── smart_class_parameter-7.yml │ │ │ │ ├── smart_class_parameter-8.yml │ │ │ │ ├── smart_class_parameter-9.yml │ │ │ │ ├── smart_proxy-0.yml │ │ │ │ ├── smart_proxy-1.yml │ │ │ │ ├── smart_proxy-2.yml │ │ │ │ ├── smart_proxy-3.yml │ │ │ │ ├── snapshot-0.yml │ │ │ │ ├── snapshot-1.yml │ │ │ │ ├── snapshot-2.yml │ │ │ │ ├── snapshot-3.yml │ │ │ │ ├── snapshot-4.yml │ │ │ │ ├── snapshot-5.yml │ │ │ │ ├── snapshot-6.yml │ │ │ │ ├── status_info-0.yml │ │ │ │ ├── subnet-0.yml │ │ │ │ ├── subnet-1.yml │ │ │ │ ├── subnet-10.yml │ │ │ │ ├── subnet-11.yml │ │ │ │ ├── subnet-12.yml │ │ │ │ ├── subnet-13.yml │ │ │ │ ├── subnet-14.yml │ │ │ │ ├── subnet-15.yml │ │ │ │ ├── subnet-16.yml │ │ │ │ ├── subnet-17.yml │ │ │ │ ├── subnet-18.yml │ │ │ │ ├── subnet-19.yml │ │ │ │ ├── subnet-2.yml │ │ │ │ ├── subnet-20.yml │ │ │ │ ├── subnet-21.yml │ │ │ │ ├── subnet-22.yml │ │ │ │ ├── subnet-23.yml │ │ │ │ ├── subnet-24.yml │ │ │ │ ├── subnet-3.yml │ │ │ │ ├── subnet-4.yml │ │ │ │ ├── subnet-5.yml │ │ │ │ ├── subnet-6.yml │ │ │ │ ├── subnet-7.yml │ │ │ │ ├── subnet-8.yml │ │ │ │ ├── subnet-9.yml │ │ │ │ ├── subscription_manifest-0.yml │ │ │ │ ├── subscription_manifest-1.yml │ │ │ │ ├── subscription_manifest-2.yml │ │ │ │ ├── subscription_manifest-3.yml │ │ │ │ ├── subscription_manifest-4.yml │ │ │ │ ├── subscription_manifest-5.yml │ │ │ │ ├── sync_plan-0.yml │ │ │ │ ├── sync_plan-1.yml │ │ │ │ ├── sync_plan-2.yml │ │ │ │ ├── sync_plan-3.yml │ │ │ │ ├── sync_plan-4.yml │ │ │ │ ├── sync_plan-5.yml │ │ │ │ ├── sync_plan-6.yml │ │ │ │ ├── sync_plan-7.yml │ │ │ │ ├── sync_plan-8.yml │ │ │ │ ├── sync_plans_role-0.yml │ │ │ │ ├── templates_import-0.yml │ │ │ │ ├── templates_import-1.yml │ │ │ │ ├── templates_import-2.yml │ │ │ │ ├── templates_import-3.yml │ │ │ │ ├── templates_import-4.yml │ │ │ │ ├── templates_import-5.yml │ │ │ │ ├── templates_import-6.yml │ │ │ │ ├── user-0.yml │ │ │ │ ├── user-1.yml │ │ │ │ ├── user-2.yml │ │ │ │ ├── user-3.yml │ │ │ │ ├── user-4.yml │ │ │ │ ├── user-5.yml │ │ │ │ ├── user-6.yml │ │ │ │ ├── user-7.yml │ │ │ │ ├── usergroup-0.yml │ │ │ │ ├── usergroup-1.yml │ │ │ │ ├── usergroup-10.yml │ │ │ │ ├── usergroup-11.yml │ │ │ │ ├── usergroup-12.yml │ │ │ │ ├── usergroup-2.yml │ │ │ │ ├── usergroup-3.yml │ │ │ │ ├── usergroup-4.yml │ │ │ │ ├── usergroup-5.yml │ │ │ │ ├── usergroup-6.yml │ │ │ │ ├── usergroup-7.yml │ │ │ │ ├── usergroup-8.yml │ │ │ │ └── usergroup-9.yml │ │ │ ├── global_parameter.yml │ │ │ ├── hardware_model.yml │ │ │ ├── host.yml │ │ │ ├── host_collection.yml │ │ │ ├── host_info.yml │ │ │ ├── host_interface_attributes.yml │ │ │ ├── host_power.yml │ │ │ ├── hostgroup.yml │ │ │ ├── http_proxy.yml │ │ │ ├── image.yml │ │ │ ├── installation_medium.yml │ │ │ ├── inventory_plugin.yml │ │ │ ├── inventory_plugin_ansible.yml │ │ │ ├── job_invocation.yml │ │ │ ├── job_template.yml │ │ │ ├── katello_hostgroup.yml │ │ │ ├── katello_smart_proxy.yml │ │ │ ├── lifecycle_environment.yml │ │ │ ├── lifecycle_environments_role.yml │ │ │ ├── location.yml │ │ │ ├── luna_hostgroup.yml │ │ │ ├── manifest_role.yml │ │ │ ├── operatingsystem.yml │ │ │ ├── organization.yml │ │ │ ├── os_default_template.yml │ │ │ ├── partition_table.yml │ │ │ ├── product.yml │ │ │ ├── provisioning_template.yml │ │ │ ├── puppet_environment.yml │ │ │ ├── puppetclasses_import.yml │ │ │ ├── realm.yml │ │ │ ├── redhat_manifest.yml │ │ │ ├── repositories_role.yml │ │ │ ├── repository.yml │ │ │ ├── repository_deb.yml │ │ │ ├── repository_info.yml │ │ │ ├── repository_set.yml │ │ │ ├── repository_sync.yml │ │ │ ├── resource_info.yml │ │ │ ├── role.yml │ │ │ ├── scap_content.yml │ │ │ ├── scap_tailoring_file.yml │ │ │ ├── scc_account.yml │ │ │ ├── scc_product.yml │ │ │ ├── scc_product_old.yml │ │ │ ├── setting.yml │ │ │ ├── smart_class_parameter.yml │ │ │ ├── smart_proxy.yml │ │ │ ├── snapshot.yml │ │ │ ├── status_info.yml │ │ │ ├── subnet.yml │ │ │ ├── subscription_manifest.yml │ │ │ ├── sync_plan.yml │ │ │ ├── sync_plans_role.yml │ │ │ ├── tasks │ │ │ │ ├── _assert_diff.yml │ │ │ │ ├── activation_key.yml │ │ │ │ ├── architecture.yml │ │ │ │ ├── auth_source_ldap.yml │ │ │ │ ├── bookmark.yml │ │ │ │ ├── compute_attribute.yml │ │ │ │ ├── compute_profile.yml │ │ │ │ ├── compute_resource.yml │ │ │ │ ├── config_group.yml │ │ │ │ ├── content_credential.yml │ │ │ │ ├── content_view.yml │ │ │ │ ├── content_view_filter_docker.yml │ │ │ │ ├── content_view_filter_errata_date.yml │ │ │ │ ├── content_view_filter_errata_id.yml │ │ │ │ ├── content_view_filter_package.yml │ │ │ │ ├── content_view_filter_package_group.yml │ │ │ │ ├── content_view_version.yml │ │ │ │ ├── domain.yml │ │ │ │ ├── environment.yml │ │ │ │ ├── external_usergroup.yml │ │ │ │ ├── global_parameter.yml │ │ │ │ ├── host.yml │ │ │ │ ├── host_collection.yml │ │ │ │ ├── host_power.yml │ │ │ │ ├── hostgroup.yml │ │ │ │ ├── http_proxy.yml │ │ │ │ ├── image.yml │ │ │ │ ├── installation_medium.yml │ │ │ │ ├── inventory_plugin.yml │ │ │ │ ├── job_template.yml │ │ │ │ ├── job_template_from_file.yml │ │ │ │ ├── katello_sync.yml │ │ │ │ ├── lifecycle_environment.yml │ │ │ │ ├── location.yml │ │ │ │ ├── model.yml │ │ │ │ ├── operatingsystem.yml │ │ │ │ ├── organization.yml │ │ │ │ ├── os_default_template.yml │ │ │ │ ├── product.yml │ │ │ │ ├── provisioning_template.yml │ │ │ │ ├── ptable.yml │ │ │ │ ├── puppetclasses_import.yml │ │ │ │ ├── realm.yml │ │ │ │ ├── redhat_manifest.yml │ │ │ │ ├── repository.yml │ │ │ │ ├── repository_set.yml │ │ │ │ ├── role.yml │ │ │ │ ├── scap_content.yml │ │ │ │ ├── scap_tailoring_file.yml │ │ │ │ ├── scc_account.yml │ │ │ │ ├── scc_product.yml │ │ │ │ ├── search_facts.yml │ │ │ │ ├── setting.yml │ │ │ │ ├── setting_fact.yml │ │ │ │ ├── smart_class_parameter.yml │ │ │ │ ├── smart_proxy.yml │ │ │ │ ├── snapshot.yml │ │ │ │ ├── status_info.yml │ │ │ │ ├── subnet.yml │ │ │ │ ├── subscription_manifest.yml │ │ │ │ ├── sync_plan.yml │ │ │ │ ├── templates_import.yml │ │ │ │ ├── upload.yml │ │ │ │ ├── user.yml │ │ │ │ └── usergroup.yml │ │ │ ├── templates_import.yml │ │ │ ├── user.yml │ │ │ ├── usergroup.yml │ │ │ └── vars │ │ │ │ ├── compute_profile.yml │ │ │ │ ├── domain.yml │ │ │ │ ├── host.yml │ │ │ │ ├── hostgroup.yml │ │ │ │ ├── search_facts.yml │ │ │ │ ├── server.yml.example │ │ │ │ ├── subnet.yml │ │ │ │ ├── templates_import.yml │ │ │ │ └── usergroup.yml │ │ ├── test_recursive_dict_keys.py │ │ └── vcr_python_wrapper.py │ │ └── vendor.py └── requirements.yaml ├── configure_openscap.yml ├── delayed_async_start.yml ├── files ├── dynamic_development_source_vars.json └── dynamic_development_source_vars.yaml ├── group_vars └── control │ ├── inventories.yml │ ├── job_templates.yml │ └── projects.yml ├── host_vars └── satellite.example.com │ ├── activation_keys.yml │ ├── content_views.yml │ ├── defaults.yml │ ├── lifecycle_environments.yml │ └── repositories.yml ├── inventory ├── inventory.foreman.yml ├── inventory_centos7_dev.aws_ec2.yml └── inventory_rhel7_dev.aws_ec2.yml ├── node_details_via_ec2_node_tools.yml ├── node_shutdown.yml ├── node_startup.yml ├── query_satellite_resource_info.yml ├── query_satellite_resource_info_hosts.yml ├── query_satellite_resource_info_hosts_set_instance_tags.yml ├── query_satellite_resource_info_hosts_splice_with_instances_details.yml ├── refresh_route53_dns.yml ├── roles ├── content_views │ ├── README.md │ ├── defaults │ │ └── main.yml │ └── tasks │ │ ├── _create_content_view.yml │ │ ├── cv_subtask.yml │ │ └── main.yml ├── ec2_node_tools │ ├── LICENSE.md │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── build_tags_dict.py │ ├── tasks │ │ ├── get_instance_details.yml │ │ ├── get_snapshot_details.yml │ │ ├── instance │ │ │ ├── start_instances.yml │ │ │ └── stop_instances.yml │ │ ├── main.yml │ │ └── snapshot │ │ │ ├── create.yml │ │ │ ├── delete.yml │ │ │ ├── detach_volume.yml │ │ │ ├── new_volume_and_attach.yml │ │ │ ├── revert.yml │ │ │ ├── snapshot_create.yml │ │ │ ├── snapshot_delete.yml │ │ │ └── snapshot_revert.yml │ └── vars │ │ └── main.yml ├── requirements.yml ├── rhsm_register │ ├── tasks │ │ └── main.yml │ └── vars │ │ ├── RedHat7.yml │ │ └── RedHat8.yml └── scap_client │ ├── Changelog.md │ ├── LICENSE │ ├── README.md │ ├── defaults │ └── main.yaml │ ├── meta │ └── main.yml │ ├── tasks │ └── main.yaml │ └── templates │ └── openscap_client_config.yaml.j2 ├── satellite_delete_host.yml ├── satellite_disconnected_mode.yml ├── satellite_hostvars_debug.yml ├── satellite_promote.yml ├── satellite_publish.yml ├── satellite_repository_sync.yml ├── satellite_transfer_host.yml ├── server_patch.yml ├── server_register.yml ├── set_instance_tags.yml ├── setup_satellite.yml ├── setup_tower.yml ├── setup_tower_creds.yml ├── snapshot_delete.yml ├── snapshot_instance.yml ├── snapshot_revert.yml ├── tower_inventory_source_update.yml ├── tower_inventory_source_update_centos7_dev.yml ├── tower_inventory_source_update_satellite.yml └── upgrade_instance.yml /.gitignore: -------------------------------------------------------------------------------- 1 | ansible.cfg 2 | private 3 | */*.pem -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /c2r.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/c2r.yml -------------------------------------------------------------------------------- /centos_gpg_key_import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/centos_gpg_key_import.yml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/.github/BOTMETA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/.github/BOTMETA.yml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/.github/settings.yml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/.gitignore -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/CHANGELOG.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/CONTRIBUTING.md -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/COPYING -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/changelogs/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/changelogs/changelog.yaml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/changelogs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/changelogs/config.yaml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/changelogs/fragments/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/docs/amazon.aws.aws_s3_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/docs/amazon.aws.aws_s3_module.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/docs/amazon.aws.aws_ssm_lookup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/docs/amazon.aws.aws_ssm_lookup.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_ami_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_ami_module.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_eni_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_eni_module.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_key_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_key_module.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_module.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_tag_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_tag_module.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_vol_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/docs/amazon.aws.ec2_vol_module.rst -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/galaxy.yml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/meta/runtime.yml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/action/aws_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/action/aws_s3.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/callback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/doc_fragments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/doc_fragments/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/doc_fragments/aws.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/doc_fragments/aws_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/doc_fragments/aws_region.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/doc_fragments/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/doc_fragments/ec2.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/inventory/aws_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/inventory/aws_ec2.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/inventory/aws_rds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/inventory/aws_rds.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/lookup/aws_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/lookup/aws_secret.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/lookup/aws_ssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/lookup/aws_ssm.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/acm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/acm.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/batch.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/cloud.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/core.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/ec2.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/elb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/elb_utils.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/elbv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/elbv2.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/iam.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/rds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/rds.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/s3.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/urls.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/waf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/waf.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/module_utils/waiters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/module_utils/waiters.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/aws_az_facts.py: -------------------------------------------------------------------------------- 1 | aws_az_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/aws_az_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/aws_az_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/aws_caller_facts.py: -------------------------------------------------------------------------------- 1 | aws_caller_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/aws_caller_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/aws_caller_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/aws_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/aws_s3.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/cloudformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/cloudformation.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/cloudformation_facts.py: -------------------------------------------------------------------------------- 1 | cloudformation_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_ami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_ami.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_ami_facts.py: -------------------------------------------------------------------------------- 1 | ec2_ami_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_ami_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_ami_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_elb_lb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_elb_lb.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_eni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_eni.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_eni_facts.py: -------------------------------------------------------------------------------- 1 | ec2_eni_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_eni_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_eni_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_group.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_group_facts.py: -------------------------------------------------------------------------------- 1 | ec2_group_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_group_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_group_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_key.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_snapshot.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_snapshot_facts.py: -------------------------------------------------------------------------------- 1 | ec2_snapshot_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_tag.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_tag_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_tag_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_vol.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vol_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vol_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vol_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_vol_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_dhcp_option_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_dhcp_option_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_net.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_net_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_net_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_net_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_net_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_subnet.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/ec2_vpc_subnet_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_subnet_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/plugins/modules/s3_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/plugins/modules/s3_bucket.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/requirements.txt -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/shippable.yml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/test-requirements.txt -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/.gitignore -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/integration/requirements.txt -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/aws_az_info/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/aws_s3/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for s3 3 | bucket_name: '{{resource_prefix}}' 4 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/aws_s3/files/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, World! 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/aws_s3/meta/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/ec2_elb_lb/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for test_ec2_elb_lb 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/ec2_snapshot/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for ec2_snapshot 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/ec2_tag/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for test_ec2_tag 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/ec2_tag/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for test_ec2_tag 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/ec2_vol/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/inventory_aws_ec2/test.aws_ec2.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/inventory_aws_rds/aliases: -------------------------------------------------------------------------------- 1 | cloud/aws 2 | unsupported 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/inventory_aws_rds/test.aws_rds.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/prepare_tests/tasks/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/s3_bucket/roles/s3_bucket/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | bucket_name: '{{ resource_prefix }}' 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/integration/targets/setup_ec2/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | resource_prefix: 'ansible-testing-' 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/requirements.yml -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/sanity/ignore-2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/sanity/ignore-2.10.txt -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/sanity/ignore-2.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/sanity/ignore-2.11.txt -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/sanity/ignore-2.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/sanity/ignore-2.12.txt -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/sanity/ignore-2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/sanity/ignore-2.9.txt -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/compat/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/compat/builtins.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/compat/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/compat/mock.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/compat/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/compat/unittest.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/mock/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/mock/loader.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/mock/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/mock/path.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/mock/procenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/mock/procenv.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/mock/vault_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/mock/vault_helper.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/mock/yaml_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/mock/yaml_helper.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/module_utils/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/module_utils/conftest.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/module_utils/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/module_utils/ec2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/module_utils/test_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/module_utils/test_ec2.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/module_utils/test_iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/module_utils/test_iam.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/modules/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/modules/placebo_recordings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/modules/placebo_recordings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/modules/placebo_recordings/cloudformation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/plugins/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/unit/plugins/modules/utils.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | placebo 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/utils/shippable/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/utils/shippable/aws.sh -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/utils/shippable/sanity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/utils/shippable/sanity.sh -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/utils/shippable/shippable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/utils/shippable/shippable.sh -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/utils/shippable/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/utils/shippable/timing.py -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/utils/shippable/timing.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -o pipefail -eu 4 | 5 | "$@" 2>&1 | "$(dirname "$0")/timing.py" 6 | -------------------------------------------------------------------------------- /collections/ansible_collections/amazon/aws/tests/utils/shippable/units.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/amazon/aws/tests/utils/shippable/units.sh -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/.gitignore -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/.yamllint -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/FILES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/FILES.json -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/LICENSE -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/MANIFEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/MANIFEST.json -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/bindep.txt -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/meta/runtime.yml -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/cli_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/cli_config.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_banner.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_base.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_get.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_lldp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_lldp.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_ping.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_put.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_system.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_user.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_vlan.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/net_vrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/net_vrf.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/netconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/netconf.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/network.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/action/telnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/action/telnet.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/become/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/become/enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/become/enable.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/connection/napalm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/connection/napalm.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/doc_fragments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/filter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/filter/ipaddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/filter/ipaddr.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/filter/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/filter/network.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/httpapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/httpapi/restconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/httpapi/restconf.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/module_utils/network/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/module_utils/network/common/cfg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/module_utils/network/common/facts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/module_utils/network/netconf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/module_utils/network/restconf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/net_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/modules/net_get.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/net_lldp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/modules/net_lldp.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/net_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/modules/net_ping.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/net_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/modules/net_put.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/net_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/modules/net_user.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/net_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/modules/net_vlan.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/net_vrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/modules/net_vrf.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/modules/telnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/modules/telnet.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/netconf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/plugins/netconf/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/plugins/netconf/default.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/requirements.txt: -------------------------------------------------------------------------------- 1 | ansible 2 | jxmlease 3 | ncclient 4 | paramiko 5 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/test-requirements.txt: -------------------------------------------------------------------------------- 1 | black==19.3b0 ; python_version > '3.5' 2 | coverage==4.5.4 3 | flake8 4 | pytest-xdist 5 | yamllint 6 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/integration/target-prefixes.network: -------------------------------------------------------------------------------- 1 | netconf -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/integration/targets/netconf_config/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | testcase: '*' 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/integration/targets/netconf_get/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | testcase: '*' 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/integration/targets/netconf_rpc/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | testcase: '*' 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/sanity/ignore-2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/tests/sanity/ignore-2.10.txt -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/sanity/ignore-2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/tests/sanity/ignore-2.9.txt -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/compat/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/tests/unit/compat/mock.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/mock/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/tests/unit/mock/loader.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/mock/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/tests/unit/mock/path.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/mock/procenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/tests/unit/mock/procenv.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/module_utils/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/module_utils/network/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/modules/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/modules/network/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/tests/unit/modules/utils.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/plugins/connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/plugins/filter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/plugins/filter/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tests/unit/plugins/filter/fixtures/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/netcommon/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/netcommon/tox.ini -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/COPYING -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/FILES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/FILES.json -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/MANIFEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/MANIFEST.json -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/TESTING.md -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/meta/runtime.yml -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/doc_fragments/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/doc_fragments/auth.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/inventory/tower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/inventory/tower.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/lookup/tower_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/lookup/tower_api.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/modules/tower_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/modules/tower_host.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/modules/tower_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/modules/tower_meta.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/modules/tower_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/modules/tower_role.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/modules/tower_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/modules/tower_send.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/modules/tower_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/modules/tower_team.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/plugins/modules/tower_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/plugins/modules/tower_user.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/requirements.txt -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/conftest.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_ad_hoc_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_ad_hoc_wait.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_application.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_completeness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_completeness.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_credential.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_group.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_inventory.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_job.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_job_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_job_template.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_label.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_module_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_module_utils.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_organization.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_project.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_role.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_schedule.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_send_receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_send_receive.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_settings.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_team.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_token.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/test/awx/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/test/awx/test_user.py -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/tests/integration/targets/tower_export/aliases: -------------------------------------------------------------------------------- 1 | skip/python2 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/tests/integration/targets/tower_import/aliases: -------------------------------------------------------------------------------- 1 | skip/python2 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/tests/sanity/ignore-2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/tests/sanity/ignore-2.10.txt -------------------------------------------------------------------------------- /collections/ansible_collections/ansible/tower/tests/sanity/ignore-2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/ansible/tower/tests/sanity/ignore-2.9.txt -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/COPYING -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/FILES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/FILES.json -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/MANIFEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/MANIFEST.json -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/TESTING.md -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/images/completeness_test_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/images/completeness_test_output.png -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/meta/runtime.yml -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/doc_fragments/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/doc_fragments/auth.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/inventory/tower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/inventory/tower.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/lookup/tower_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/lookup/tower_api.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/module_utils/tower_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/module_utils/tower_api.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_credential.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_export.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_group.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_host.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_import.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_inventory.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_job_cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_job_cancel.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_job_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_job_launch.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_job_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_job_list.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_job_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_job_wait.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_label.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_license.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_meta.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_project.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_receive.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_role.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_schedule.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_send.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_settings.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_team.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_token.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/plugins/modules/tower_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/plugins/modules/tower_user.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/requirements.txt -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=160 3 | ignore=E402 -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/conftest.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_ad_hoc_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_ad_hoc_wait.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_application.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_completeness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_completeness.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_credential.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_credential_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_credential_type.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_group.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_instance_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_instance_group.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_inventory.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_inventory_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_inventory_source.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_job.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_job_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_job_template.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_label.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_module_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_module_utils.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_organization.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_project.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_role.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_schedule.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_send_receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_send_receive.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_settings.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_team.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_token.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_user.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/test/awx/test_workflow_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/test/awx/test_workflow_template.py -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tests/integration/targets/tower_export/aliases: -------------------------------------------------------------------------------- 1 | skip/python2 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tests/integration/targets/tower_import/aliases: -------------------------------------------------------------------------------- 1 | skip/python2 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tests/sanity/ignore-2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tests/sanity/ignore-2.10.txt -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tests/sanity/ignore-2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tests/sanity/ignore-2.9.txt -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tools/generate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tools/generate.yml -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tools/roles/generate/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tools/roles/generate/tasks/main.yml -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tools/template_galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tools/template_galaxy.yml -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tools/vars/aliases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tools/vars/aliases.yml -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tools/vars/associations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tools/vars/associations.yml -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tools/vars/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tools/vars/examples.yml -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tools/vars/generate_for.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tools/vars/generate_for.yml -------------------------------------------------------------------------------- /collections/ansible_collections/awx/awx/tools/vars/resolution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/awx/awx/tools/vars/resolution.yml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/.github/BOTMETA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/.github/BOTMETA.yml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/.github/settings.yml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/.gitignore -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/CHANGELOG.rst -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/CONTRIBUTING.md -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/COPYING -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/changelogs/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/changelogs/changelog.yaml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/changelogs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/changelogs/config.yaml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/changelogs/fragments/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/galaxy.yml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/meta/runtime.yml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/connection/aws_ssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/connection/aws_ssm.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/module_utils/wafv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/module_utils/wafv2.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_acm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/aws_acm.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_acm_facts.py: -------------------------------------------------------------------------------- 1 | aws_acm_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/aws_kms.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_kms_facts.py: -------------------------------------------------------------------------------- 1 | aws_kms_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_region_facts.py: -------------------------------------------------------------------------------- 1 | aws_region_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_s3_bucket_facts.py: -------------------------------------------------------------------------------- 1 | aws_s3_bucket_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/aws_secret.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_sgw_facts.py: -------------------------------------------------------------------------------- 1 | aws_sgw_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/aws_waf_facts.py: -------------------------------------------------------------------------------- 1 | aws_waf_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/cloudfront_facts.py: -------------------------------------------------------------------------------- 1 | cloudfront_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/cloudtrail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/cloudtrail.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/cloudwatchlogs_log_group_facts.py: -------------------------------------------------------------------------------- 1 | cloudwatchlogs_log_group_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_asg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/ec2_asg.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_asg_facts.py: -------------------------------------------------------------------------------- 1 | ec2_asg_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_customer_gateway_facts.py: -------------------------------------------------------------------------------- 1 | ec2_customer_gateway_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_eip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/ec2_eip.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_eip_facts.py: -------------------------------------------------------------------------------- 1 | ec2_eip_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_elb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/ec2_elb.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_elb_facts.py: -------------------------------------------------------------------------------- 1 | ec2_elb_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_instance_facts.py: -------------------------------------------------------------------------------- 1 | ec2_instance_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_lc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/ec2_lc.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_lc_facts.py: -------------------------------------------------------------------------------- 1 | ec2_lc_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_placement_group_facts.py: -------------------------------------------------------------------------------- 1 | ec2_placement_group_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_vpc_endpoint_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_endpoint_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_vpc_igw_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_igw_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_vpc_nacl_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_nacl_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_vpc_nat_gateway_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_nat_gateway_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_vpc_peering_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_peering_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_vpc_route_table_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_route_table_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_vpc_vgw_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_vgw_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ec2_vpc_vpn_facts.py: -------------------------------------------------------------------------------- 1 | ec2_vpc_vpn_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ecs_ecr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/ecs_ecr.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ecs_service_facts.py: -------------------------------------------------------------------------------- 1 | ecs_service_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ecs_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/ecs_tag.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ecs_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/ecs_task.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/ecs_taskdefinition_facts.py: -------------------------------------------------------------------------------- 1 | ecs_taskdefinition_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/efs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/efs.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/efs_facts.py: -------------------------------------------------------------------------------- 1 | efs_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/efs_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/efs_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/elasticache_facts.py: -------------------------------------------------------------------------------- 1 | elasticache_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/elb_application_lb_facts.py: -------------------------------------------------------------------------------- 1 | elb_application_lb_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/elb_classic_lb_facts.py: -------------------------------------------------------------------------------- 1 | elb_classic_lb_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/elb_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/elb_target.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/elb_target_facts.py: -------------------------------------------------------------------------------- 1 | elb_target_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/elb_target_group_facts.py: -------------------------------------------------------------------------------- 1 | elb_target_group_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/iam.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/iam_cert.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_cert_facts.py: -------------------------------------------------------------------------------- 1 | iam_server_certificate_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/iam_group.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_mfa_device_facts.py: -------------------------------------------------------------------------------- 1 | iam_mfa_device_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/iam_policy.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/iam_role.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_role_facts.py: -------------------------------------------------------------------------------- 1 | iam_role_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_server_certificate_facts.py: -------------------------------------------------------------------------------- 1 | iam_server_certificate_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/iam_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/iam_user.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/lambda.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/lightsail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/lightsail.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/rds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/rds.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/rds_instance_facts.py: -------------------------------------------------------------------------------- 1 | rds_instance_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/rds_snapshot_facts.py: -------------------------------------------------------------------------------- 1 | rds_snapshot_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/redshift.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/redshift_facts.py: -------------------------------------------------------------------------------- 1 | redshift_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/route53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/route53.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/route53_facts.py: -------------------------------------------------------------------------------- 1 | route53_info.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/s3_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/s3_logging.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/s3_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/s3_sync.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/s3_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/s3_website.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/sns.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/sns_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/sns_topic.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/plugins/modules/sqs_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/plugins/modules/sqs_queue.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/requirements.txt -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/scripts/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/scripts/inventory/ec2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/scripts/inventory/ec2.ini -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/scripts/inventory/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/scripts/inventory/ec2.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/shippable.yml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/test-requirements.txt -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/.gitignore -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/aws_acm/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/aws_codebuild/vars/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/aws_eks_cluster/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/aws_region_info/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/aws_ses_identity/meta/main.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/cloudformation_exports_info/defaults/main.yml: -------------------------------------------------------------------------------- 1 | stack_name: "{{ resource_prefix }}" 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/cloudfront_distribution/aliases: -------------------------------------------------------------------------------- 1 | # reason: broken 2 | disabled 3 | 4 | cloud/aws 5 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/cloudfront_distribution/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: [] 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/cloudtrail/aliases: -------------------------------------------------------------------------------- 1 | # reason: missing-policy 2 | unsupported 3 | 4 | cloud/aws 5 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/connection_aws_ssm/aws_ssm_integration_test_setup/templates/s3_vars_to_delete.yml.j2: -------------------------------------------------------------------------------- 1 | --- 2 | bucket_name: {{s3_output.name}} 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/dms_endpoint/aliases: -------------------------------------------------------------------------------- 1 | # reason: missing-policy 2 | unsupported 3 | 4 | cloud/aws 5 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/dms_endpoint/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | dms_identifier: "{{ resource_prefix }}-dms" 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/dms_replication_subnet_group/aliases: -------------------------------------------------------------------------------- 1 | # reason: missing-policy 2 | unsupported 3 | 4 | cloud/aws 5 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/ec2_asg/vars/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/ec2_metric_alarm/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/ec2_vpc_endpoint_service_info/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/ecs_cluster/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/ecs_tag/aliases: -------------------------------------------------------------------------------- 1 | # reason: missing-policy 2 | unsupported 3 | 4 | cloud/aws 5 | 6 | ecs_tag 7 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/elb_application_lb/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/elb_application_lb_info/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - setup_remote_tmp_dir 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/elb_classic_lb/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for test_ec2_elb_lb 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/elb_target_info/aliases: -------------------------------------------------------------------------------- 1 | # reason: missing-policy 2 | unsupported 3 | 4 | cloud/aws 5 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/iam_saml_federation/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | provider_name: 'ansible-test-{{ resource_prefix }}' 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/prepare_tests/tasks/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/rds_subnet_group/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - prepare_tests 3 | - setup_ec2 4 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/route53/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for route53 tests 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/route53/vars/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/s3_lifecycle/defaults/main.yml: -------------------------------------------------------------------------------- 1 | bucket_name: '{{ resource_prefix }}-s3-lifecycle' 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/s3_sync/files/test1.txt: -------------------------------------------------------------------------------- 1 | test1 -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/s3_sync/files/test2.yml: -------------------------------------------------------------------------------- 1 | --- 2 | test2: example 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/s3_sync/files/test3.json: -------------------------------------------------------------------------------- 1 | { 2 | "test3": "value" 3 | } -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/script_inventory_ec2/aliases: -------------------------------------------------------------------------------- 1 | shippable/posix/group2 2 | needs/file/contrib/inventory/ec2.py 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/setup_ec2/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | resource_prefix: 'ansible-testing-' 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/sns_topic/aliases: -------------------------------------------------------------------------------- 1 | # reason: missing-policy 2 | unsupported 3 | 4 | cloud/aws 5 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/sqs_queue/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/integration/targets/wafv2_ip_set/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | ip_set_name: '{{ resource_prefix }}-ipset' 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/requirements.yml -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/sanity/ignore-2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/sanity/ignore-2.10.txt -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/sanity/ignore-2.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/sanity/ignore-2.11.txt -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/sanity/ignore-2.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/sanity/ignore-2.12.txt -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/sanity/ignore-2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/sanity/ignore-2.9.txt -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/compat/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/unit/compat/builtins.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/compat/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/unit/compat/mock.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/compat/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/unit/compat/unittest.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/mock/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/unit/mock/loader.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/mock/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/unit/mock/path.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/mock/procenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/unit/mock/procenv.py -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/modules/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/modules/placebo_recordings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/modules/placebo_recordings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/modules/placebo_recordings/aws_direct_connect_connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/modules/placebo_recordings/aws_direct_connect_link_aggregation_group/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/modules/placebo_recordings/data_pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/plugins/modules/placebo_recordings/ec2_vpc_vpn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/unit/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | placebo 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/utils/shippable/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/community/aws/tests/utils/shippable/aws.sh -------------------------------------------------------------------------------- /collections/ansible_collections/community/aws/tests/utils/shippable/timing.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -o pipefail -eu 4 | 5 | "$@" 2>&1 | "$(dirname "$0")/timing.py" 6 | -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/.gitignore -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/CHANGELOG.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/FILES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/FILES.json -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/LICENSE -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/MANIFEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/MANIFEST.json -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/docs/create_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/docs/create_docs.yml -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/docs/insights_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/docs/insights_config.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/docs/insights_register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/docs/insights_register.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/docs/inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/docs/inventory.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/docs/templates/docs.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/docs/templates/docs.md.j2 -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/galaxy.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/galaxy.yml.j2 -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/release.yml -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/insights/roles/compliance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/insights/roles/compliance/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/CHANGELOG.rst -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/FILES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/FILES.json -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/LICENSE -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/MANIFEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/MANIFEST.json -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/changelogs/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/changelogs/changelog.yaml -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/meta/runtime.yml -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/filter/foreman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/filter/foreman.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/domain.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/host.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/image.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/product.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/realm.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/role.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/setting.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/subnet.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/plugins/modules/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/plugins/modules/user.py -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.4.2 2 | ipaddress; python_version < '3.3' 3 | PyYAML 4 | -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/roles/manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat/satellite/roles/manifest/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat/satellite/roles/manifest/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | manifest_download: false 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/redhat_cop/tower_configuration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat_cop/tower_configuration/.gitignore -------------------------------------------------------------------------------- /collections/ansible_collections/redhat_cop/tower_configuration/FILES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat_cop/tower_configuration/FILES.json -------------------------------------------------------------------------------- /collections/ansible_collections/redhat_cop/tower_configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat_cop/tower_configuration/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat_cop/tower_configuration/STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/redhat_cop/tower_configuration/STANDARDS.md -------------------------------------------------------------------------------- /collections/ansible_collections/redhat_cop/tower_configuration/changelogs/fragments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/.github/dependabot.yml -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/.gitignore -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/.mailmap -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/.yamllint -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/CHANGELOG.rst -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/LICENSE -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/Makefile -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/changelogs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/changelogs/config.yaml -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/changelogs/fragments/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/CHANGELOG.rst: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.rst -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/Makefile -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/api.rst -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/conf.py -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/cvmanager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/cvmanager.md -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/developing.md -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/filters.rst -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/index.rst -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/releasing.md -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/requirements.txt -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/roles.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/roles.rst.template -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/docs/testing.md -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/galaxy.yml -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/meta/runtime.yml -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/plugins/module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/plugins/modules/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/plugins/modules/host.py -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/plugins/modules/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/plugins/modules/image.py -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/plugins/modules/realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/plugins/modules/realm.py -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/plugins/modules/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/plugins/modules/role.py -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/plugins/modules/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/plugins/modules/user.py -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/requirements-dev.txt -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/requirements-lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/requirements-lint.txt -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.4.2 2 | ipaddress; python_version < '3.3' 3 | PyYAML 4 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/roles/manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/roles/manifest/README.md -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/roles/manifest/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | manifest_download: false 3 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/tests/conftest.py -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/activation_key.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/activation_keys_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/architecture.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/auth_source_ldap.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/bookmark.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/compute_attribute.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/compute_profile.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/compute_resource.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/config_group.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/content_credential.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/content_upload.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/content_upload_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/content_view.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/content_view_filter.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/content_view_version.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/content_view_version_cleanup_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/domain.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/external_usergroup.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/filters.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/global_parameter.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/hardware_model.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/host.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/host_collection.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/host_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/host_interface_attributes.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/host_power.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/hostgroup.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/http_proxy.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/image.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/installation_medium.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/inventory_plugin.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/inventory_plugin_ansible.json: -------------------------------------------------------------------------------- 1 | inventory_plugin.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/job_invocation.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/job_template.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/katello_hostgroup.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/katello_smart_proxy.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/lifecycle_environment.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/lifecycle_environments_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/location.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/luna_hostgroup.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/manifest_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/operatingsystem.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/organization.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/os_default_template.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/partition_table.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/product.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/provisioning_template.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/puppet_environment.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/puppetclasses_import.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/realm.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/redhat_manifest.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/repositories_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/repository.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/repository_deb.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/repository_info.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/repository_set.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/repository_sync.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/resource_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/role.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/scap_content.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/scap_tailoring_file.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/scc_account.json: -------------------------------------------------------------------------------- 1 | scc_manager.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/scc_product.json: -------------------------------------------------------------------------------- 1 | scc_manager.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/scc_product_old.json: -------------------------------------------------------------------------------- 1 | scc_manager.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/setting.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/smart_class_parameter.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/smart_proxy.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/status_info.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/subnet.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/subscription_manifest.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/sync_plan.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/sync_plans_role.json: -------------------------------------------------------------------------------- 1 | katello.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/templates_import.json: -------------------------------------------------------------------------------- 1 | luna.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/user.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/fixtures/apidoc/usergroup.json: -------------------------------------------------------------------------------- 1 | foreman.json -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/inventory/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/tests/inventory/hosts -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/tests/test_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/tests/test_crud.py -------------------------------------------------------------------------------- /collections/ansible_collections/theforeman/foreman/vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/ansible_collections/theforeman/foreman/vendor.py -------------------------------------------------------------------------------- /collections/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/collections/requirements.yaml -------------------------------------------------------------------------------- /configure_openscap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/configure_openscap.yml -------------------------------------------------------------------------------- /delayed_async_start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/delayed_async_start.yml -------------------------------------------------------------------------------- /files/dynamic_development_source_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/files/dynamic_development_source_vars.json -------------------------------------------------------------------------------- /files/dynamic_development_source_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/files/dynamic_development_source_vars.yaml -------------------------------------------------------------------------------- /group_vars/control/inventories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/group_vars/control/inventories.yml -------------------------------------------------------------------------------- /group_vars/control/job_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/group_vars/control/job_templates.yml -------------------------------------------------------------------------------- /group_vars/control/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/group_vars/control/projects.yml -------------------------------------------------------------------------------- /host_vars/satellite.example.com/activation_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/host_vars/satellite.example.com/activation_keys.yml -------------------------------------------------------------------------------- /host_vars/satellite.example.com/content_views.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/host_vars/satellite.example.com/content_views.yml -------------------------------------------------------------------------------- /host_vars/satellite.example.com/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/host_vars/satellite.example.com/defaults.yml -------------------------------------------------------------------------------- /host_vars/satellite.example.com/lifecycle_environments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/host_vars/satellite.example.com/lifecycle_environments.yml -------------------------------------------------------------------------------- /host_vars/satellite.example.com/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/host_vars/satellite.example.com/repositories.yml -------------------------------------------------------------------------------- /inventory/inventory.foreman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/inventory/inventory.foreman.yml -------------------------------------------------------------------------------- /inventory/inventory_centos7_dev.aws_ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/inventory/inventory_centos7_dev.aws_ec2.yml -------------------------------------------------------------------------------- /inventory/inventory_rhel7_dev.aws_ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/inventory/inventory_rhel7_dev.aws_ec2.yml -------------------------------------------------------------------------------- /node_details_via_ec2_node_tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/node_details_via_ec2_node_tools.yml -------------------------------------------------------------------------------- /node_shutdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/node_shutdown.yml -------------------------------------------------------------------------------- /node_startup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/node_startup.yml -------------------------------------------------------------------------------- /query_satellite_resource_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/query_satellite_resource_info.yml -------------------------------------------------------------------------------- /query_satellite_resource_info_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/query_satellite_resource_info_hosts.yml -------------------------------------------------------------------------------- /query_satellite_resource_info_hosts_set_instance_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/query_satellite_resource_info_hosts_set_instance_tags.yml -------------------------------------------------------------------------------- /query_satellite_resource_info_hosts_splice_with_instances_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/query_satellite_resource_info_hosts_splice_with_instances_details.yml -------------------------------------------------------------------------------- /refresh_route53_dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/refresh_route53_dns.yml -------------------------------------------------------------------------------- /roles/content_views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/content_views/README.md -------------------------------------------------------------------------------- /roles/content_views/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/content_views/defaults/main.yml -------------------------------------------------------------------------------- /roles/content_views/tasks/_create_content_view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/content_views/tasks/_create_content_view.yml -------------------------------------------------------------------------------- /roles/content_views/tasks/cv_subtask.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/content_views/tasks/cv_subtask.yml -------------------------------------------------------------------------------- /roles/content_views/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/content_views/tasks/main.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/LICENSE.md -------------------------------------------------------------------------------- /roles/ec2_node_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/README.md -------------------------------------------------------------------------------- /roles/ec2_node_tools/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/defaults/main.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/files/build_tags_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/files/build_tags_dict.py -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/get_instance_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/get_instance_details.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/get_snapshot_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/get_snapshot_details.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/instance/start_instances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/instance/start_instances.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/instance/stop_instances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/instance/stop_instances.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/main.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/snapshot/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/snapshot/create.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/snapshot/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/snapshot/delete.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/snapshot/detach_volume.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/snapshot/detach_volume.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/snapshot/new_volume_and_attach.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/snapshot/new_volume_and_attach.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/snapshot/revert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/snapshot/revert.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/snapshot/snapshot_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/snapshot/snapshot_create.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/snapshot/snapshot_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/snapshot/snapshot_delete.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/tasks/snapshot/snapshot_revert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/tasks/snapshot/snapshot_revert.yml -------------------------------------------------------------------------------- /roles/ec2_node_tools/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/ec2_node_tools/vars/main.yml -------------------------------------------------------------------------------- /roles/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/requirements.yml -------------------------------------------------------------------------------- /roles/rhsm_register/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/rhsm_register/tasks/main.yml -------------------------------------------------------------------------------- /roles/rhsm_register/vars/RedHat7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/rhsm_register/vars/RedHat7.yml -------------------------------------------------------------------------------- /roles/rhsm_register/vars/RedHat8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/rhsm_register/vars/RedHat8.yml -------------------------------------------------------------------------------- /roles/scap_client/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/scap_client/Changelog.md -------------------------------------------------------------------------------- /roles/scap_client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/scap_client/LICENSE -------------------------------------------------------------------------------- /roles/scap_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/scap_client/README.md -------------------------------------------------------------------------------- /roles/scap_client/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/scap_client/defaults/main.yaml -------------------------------------------------------------------------------- /roles/scap_client/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/scap_client/meta/main.yml -------------------------------------------------------------------------------- /roles/scap_client/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/scap_client/tasks/main.yaml -------------------------------------------------------------------------------- /roles/scap_client/templates/openscap_client_config.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/roles/scap_client/templates/openscap_client_config.yaml.j2 -------------------------------------------------------------------------------- /satellite_delete_host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/satellite_delete_host.yml -------------------------------------------------------------------------------- /satellite_disconnected_mode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/satellite_disconnected_mode.yml -------------------------------------------------------------------------------- /satellite_hostvars_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/satellite_hostvars_debug.yml -------------------------------------------------------------------------------- /satellite_promote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/satellite_promote.yml -------------------------------------------------------------------------------- /satellite_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/satellite_publish.yml -------------------------------------------------------------------------------- /satellite_repository_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/satellite_repository_sync.yml -------------------------------------------------------------------------------- /satellite_transfer_host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/satellite_transfer_host.yml -------------------------------------------------------------------------------- /server_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/server_patch.yml -------------------------------------------------------------------------------- /server_register.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/server_register.yml -------------------------------------------------------------------------------- /set_instance_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/set_instance_tags.yml -------------------------------------------------------------------------------- /setup_satellite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/setup_satellite.yml -------------------------------------------------------------------------------- /setup_tower.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/setup_tower.yml -------------------------------------------------------------------------------- /setup_tower_creds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/setup_tower_creds.yml -------------------------------------------------------------------------------- /snapshot_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/snapshot_delete.yml -------------------------------------------------------------------------------- /snapshot_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/snapshot_instance.yml -------------------------------------------------------------------------------- /snapshot_revert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/snapshot_revert.yml -------------------------------------------------------------------------------- /tower_inventory_source_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/tower_inventory_source_update.yml -------------------------------------------------------------------------------- /tower_inventory_source_update_centos7_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/tower_inventory_source_update_centos7_dev.yml -------------------------------------------------------------------------------- /tower_inventory_source_update_satellite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/tower_inventory_source_update_satellite.yml -------------------------------------------------------------------------------- /upgrade_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-partner-tech/automated-smart-management/HEAD/upgrade_instance.yml --------------------------------------------------------------------------------