├── .dockerignore ├── .github └── workflows │ └── release.yaml ├── .gitignore ├── Dockerfile ├── Dockerfile.ubi ├── LICENSE ├── Makefile ├── README.md ├── ansible.cfg ├── bootstrap.yaml ├── create-cluster.yaml ├── delete-cluster.yaml ├── docs ├── images │ └── rosa-pl-tgw.png └── modules.md ├── environment ├── cicd-demo │ ├── group_vars │ │ └── all.yaml │ └── hosts ├── default │ ├── group_vars │ │ └── all.yaml │ └── hosts ├── hcp │ ├── group_vars │ │ └── all.yaml │ └── hosts ├── multi-az │ ├── group_vars │ │ └── all.yaml │ └── hosts ├── private-link │ ├── group_vars │ │ └── all.yaml │ └── hosts └── transit-gateway-egress │ ├── group_vars │ └── all.yaml │ └── hosts ├── galaxy.yml ├── install.yml ├── meta └── runtime.yml ├── playbooks └── aws_resource_quota.yml ├── plugins ├── module_utils │ └── ocm.py └── modules │ ├── ec2_transit_gateway.py │ ├── ec2_vpc_route_table.py.old │ ├── ocm_cluster.py │ ├── ocm_cluster_info.py │ ├── ocm_idp.py │ ├── ocm_oidc_config.py │ ├── ocm_version_info.py │ ├── oidc_provider.py │ ├── peer_cert_chain_info.py │ ├── rosa_cluster.py │ ├── rosa_cluster_info.py │ ├── route53_zone.py │ └── transit_gateway_route.py ├── requirements.txt ├── requirements.yml ├── roles ├── README.md ├── _archive │ ├── account_roles_create │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── account_roles_delete │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── cluster_create │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── hcp_oidc.yml │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── cluster_info_output.yaml │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── cluster_delete │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── create_admin │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── dns_resolver_create │ │ ├── README.md │ │ └── tasks │ │ │ └── main.yml │ ├── dns_resolver_delete │ │ ├── README.md │ │ └── tasks │ │ │ └── main.yml │ ├── egress_vpc_create │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── main.yml │ │ │ ├── nat_gateway_routes.yml │ │ │ └── vpc.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── egress_vpc_delete │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── jumphost_create │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ └── user_data.sh │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── jumphost_delete │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── operator_roles_create │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── classic │ │ │ │ ├── openshift_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json │ │ │ │ ├── openshift_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ │ ├── openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ │ ├── openshift_image_registry_installer_cloud_credentials_policy.json │ │ │ │ ├── openshift_ingress_operator_cloud_credentials_policy.json │ │ │ │ └── openshift_machine_api_aws_cloud_credentials_policy.json │ │ │ └── hcp │ │ │ │ ├── openshift_capa_controller_manager_credentials_policy.json │ │ │ │ ├── openshift_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ │ ├── openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ │ ├── openshift_control_plane_operator_credentials_policy.json │ │ │ │ ├── openshift_image_registry_installer_cloud_credentials_policy.json │ │ │ │ ├── openshift_ingress_operator_cloud_credentials_policy.json │ │ │ │ ├── openshift_kms_provider_credentials_policy.json │ │ │ │ └── openshift_kube_controller_manager_credentials_policy.json │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── classic.yml │ │ │ ├── hcp.yml │ │ │ └── main.yml │ │ ├── templates │ │ │ ├── classic │ │ │ │ ├── operator_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json │ │ │ │ ├── operator_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ │ ├── operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ │ ├── operator_image_registry_installer_cloud_credentials_policy.json │ │ │ │ ├── operator_ingress_operator_cloud_credentials_policy.json │ │ │ │ └── operator_machine_api_aws_cloud_credentials_policy.json │ │ │ └── hcp │ │ │ │ ├── old │ │ │ │ ├── operator_capa_controller_manager_credentials_policy.json │ │ │ │ ├── operator_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ │ ├── operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ │ ├── operator_control_plane_operator_credentials_policy.json │ │ │ │ ├── operator_image_registry_installer_cloud_credentials_policy.json │ │ │ │ ├── operator_ingress_operator_cloud_credentials_policy.json │ │ │ │ ├── operator_kms_provider_credentials_policy.json │ │ │ │ └── operator_kube_controller_manager_credentials_policy.json │ │ │ │ ├── operator_capa_controller_manager_credentials_policy.json │ │ │ │ ├── operator_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ │ ├── operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ │ ├── operator_control_plane_operator_credentials_policy.json │ │ │ │ ├── operator_image_registry_installer_cloud_credentials_policy.json │ │ │ │ ├── operator_ingress_operator_cloud_credentials_policy.json │ │ │ │ ├── operator_kms_provider_credentials_policy.json │ │ │ │ └── operator_kube_controller_manager_credentials_policy.json │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── operator_roles_delete │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── main.yml │ │ │ └── roles.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── post_install │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── proxy_create │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── squid-ca-cert-key.pem │ │ │ ├── squid-ca-cert.pem │ │ │ ├── squid-ca-key.pem │ │ │ └── user_data.sh │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── user_data.sh.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── proxy_delete │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── tgw_create │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── tgw_delete │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── vpc_create │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ └── vpc_delete │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml ├── _vars │ ├── README.md │ ├── defaults │ │ └── main.yml │ └── tasks │ │ ├── main.yml │ │ └── validate.yml ├── finish │ ├── .travis.yml │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── kms_create │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── kms-policy.json.j2 │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── network_math │ ├── README.md │ └── tasks │ │ ├── egress_vpc.yml │ │ ├── main.yml │ │ └── rosa_vpc.yml ├── rosa_account_roles │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── classic │ │ │ └── 4.14 │ │ │ │ ├── sts_installer_permission_policy.json │ │ │ │ ├── sts_installer_trust_policy.json │ │ │ │ ├── sts_instance_controlplane_permission_policy.json │ │ │ │ ├── sts_instance_controlplane_trust_policy.json │ │ │ │ ├── sts_instance_worker_permission_policy.json │ │ │ │ ├── sts_instance_worker_trust_policy.json │ │ │ │ ├── sts_support_permission_policy.json │ │ │ │ └── sts_support_trust_policy.json │ │ └── hcp │ │ │ └── 4.14 │ │ │ ├── sts_installer_trust_policy.json │ │ │ ├── sts_instance_worker_trust_policy.json │ │ │ └── sts_support_trust_policy.json │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── absent │ │ │ ├── classic.yml │ │ │ ├── hcp.yml │ │ │ └── main.yml │ │ ├── main.yml │ │ └── present │ │ │ ├── classic.yml │ │ │ ├── hcp.yml │ │ │ └── main.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── rosa_cluster │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── absent │ │ │ └── main.yml │ │ ├── main.yml │ │ └── present │ │ │ └── main.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── rosa_dns_resolver │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── absent │ │ │ └── main.yml │ │ ├── main.yml │ │ └── present │ │ │ └── main.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── rosa_ec2_instance │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── basic_user_data.sh │ │ ├── squid-ca-cert-key.pem │ │ ├── squid-ca-cert.pem │ │ └── squid-ca-key.pem │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── absent │ │ │ └── main.yml │ │ ├── main.yml │ │ └── present │ │ │ └── main.yml │ ├── templates │ │ └── proxy_user_data.sh.j2 │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── rosa_egress_vpc │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── absent │ │ │ └── main.yml │ │ ├── main.yml │ │ └── present │ │ │ ├── main.yml │ │ │ ├── nat_gateway_routes.yml │ │ │ └── vpc.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── rosa_operator_roles │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── classic │ │ │ ├── openshift_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json │ │ │ ├── openshift_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ ├── openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ ├── openshift_image_registry_installer_cloud_credentials_policy.json │ │ │ ├── openshift_ingress_operator_cloud_credentials_policy.json │ │ │ └── openshift_machine_api_aws_cloud_credentials_policy.json │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── absent │ │ │ ├── main.yml │ │ │ └── roles.yml │ │ ├── main.yml │ │ └── present │ │ │ ├── classic.yml │ │ │ ├── hcp.yml │ │ │ └── main.yml │ ├── templates │ │ ├── classic │ │ │ ├── operator_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json │ │ │ ├── operator_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ ├── operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ ├── operator_image_registry_installer_cloud_credentials_policy.json │ │ │ ├── operator_ingress_operator_cloud_credentials_policy.json │ │ │ └── operator_machine_api_aws_cloud_credentials_policy.json │ │ └── hcp │ │ │ ├── old │ │ │ ├── operator_capa_controller_manager_credentials_policy.json │ │ │ ├── operator_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ ├── operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ ├── operator_control_plane_operator_credentials_policy.json │ │ │ ├── operator_image_registry_installer_cloud_credentials_policy.json │ │ │ ├── operator_ingress_operator_cloud_credentials_policy.json │ │ │ ├── operator_kms_provider_credentials_policy.json │ │ │ └── operator_kube_controller_manager_credentials_policy.json │ │ │ ├── operator_capa_controller_manager_credentials_policy.json │ │ │ ├── operator_cloud_network_config_controller_cloud_credentials_policy.json │ │ │ ├── operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json │ │ │ ├── operator_control_plane_operator_credentials_policy.json │ │ │ ├── operator_image_registry_installer_cloud_credentials_policy.json │ │ │ ├── operator_ingress_operator_cloud_credentials_policy.json │ │ │ ├── operator_kms_provider_credentials_policy.json │ │ │ └── operator_kube_controller_manager_credentials_policy.json │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── rosa_transit_gateway │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── absent │ │ │ └── main.yml │ │ ├── main.yml │ │ └── present │ │ │ └── main.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── rosa_vpc │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── absent │ │ │ ├── main.yml │ │ │ └── vpc_endpoints.yml │ │ ├── main.yml │ │ └── present │ │ │ ├── main.yml │ │ │ ├── nat_gateway_routes.yml │ │ │ └── vpc_endpoints.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml └── service_quotas │ ├── README.md │ ├── defaults │ └── main.yml │ ├── handlers │ └── main.yml │ ├── meta │ └── main.yml │ ├── tasks │ ├── main.yml │ └── run.yml │ ├── tests │ ├── inventory │ └── test.yml │ └── vars │ └── main.yml ├── sts.yaml ├── uninstall.yml ├── vars └── main.yaml └── vpc.yaml /.dockerignore: -------------------------------------------------------------------------------- 1 | ./virtualenv 2 | ./tmp 3 | ./staging 4 | -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/Dockerfile.ubi -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/ansible.cfg -------------------------------------------------------------------------------- /bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/bootstrap.yaml -------------------------------------------------------------------------------- /create-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/create-cluster.yaml -------------------------------------------------------------------------------- /delete-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/delete-cluster.yaml -------------------------------------------------------------------------------- /docs/images/rosa-pl-tgw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/docs/images/rosa-pl-tgw.png -------------------------------------------------------------------------------- /docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/docs/modules.md -------------------------------------------------------------------------------- /environment/cicd-demo/group_vars/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/environment/cicd-demo/group_vars/all.yaml -------------------------------------------------------------------------------- /environment/cicd-demo/hosts: -------------------------------------------------------------------------------- 1 | [rosa_clusters] 2 | localhost 3 | -------------------------------------------------------------------------------- /environment/default/group_vars/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/environment/default/group_vars/all.yaml -------------------------------------------------------------------------------- /environment/default/hosts: -------------------------------------------------------------------------------- 1 | [rosa_clusters] 2 | localhost 3 | -------------------------------------------------------------------------------- /environment/hcp/group_vars/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/environment/hcp/group_vars/all.yaml -------------------------------------------------------------------------------- /environment/hcp/hosts: -------------------------------------------------------------------------------- 1 | [rosa_clusters] 2 | localhost 3 | -------------------------------------------------------------------------------- /environment/multi-az/group_vars/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/environment/multi-az/group_vars/all.yaml -------------------------------------------------------------------------------- /environment/multi-az/hosts: -------------------------------------------------------------------------------- 1 | [rosa_clusters] 2 | localhost 3 | -------------------------------------------------------------------------------- /environment/private-link/group_vars/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/environment/private-link/group_vars/all.yaml -------------------------------------------------------------------------------- /environment/private-link/hosts: -------------------------------------------------------------------------------- 1 | [rosa_clusters] 2 | localhost 3 | -------------------------------------------------------------------------------- /environment/transit-gateway-egress/group_vars/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/environment/transit-gateway-egress/group_vars/all.yaml -------------------------------------------------------------------------------- /environment/transit-gateway-egress/hosts: -------------------------------------------------------------------------------- 1 | [rosa_clusters] 2 | localhost 3 | -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/galaxy.yml -------------------------------------------------------------------------------- /install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/install.yml -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/meta/runtime.yml -------------------------------------------------------------------------------- /playbooks/aws_resource_quota.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/playbooks/aws_resource_quota.yml -------------------------------------------------------------------------------- /plugins/module_utils/ocm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/module_utils/ocm.py -------------------------------------------------------------------------------- /plugins/modules/ec2_transit_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/ec2_transit_gateway.py -------------------------------------------------------------------------------- /plugins/modules/ec2_vpc_route_table.py.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/ec2_vpc_route_table.py.old -------------------------------------------------------------------------------- /plugins/modules/ocm_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/ocm_cluster.py -------------------------------------------------------------------------------- /plugins/modules/ocm_cluster_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/ocm_cluster_info.py -------------------------------------------------------------------------------- /plugins/modules/ocm_idp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/ocm_idp.py -------------------------------------------------------------------------------- /plugins/modules/ocm_oidc_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/ocm_oidc_config.py -------------------------------------------------------------------------------- /plugins/modules/ocm_version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/ocm_version_info.py -------------------------------------------------------------------------------- /plugins/modules/oidc_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/oidc_provider.py -------------------------------------------------------------------------------- /plugins/modules/peer_cert_chain_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/peer_cert_chain_info.py -------------------------------------------------------------------------------- /plugins/modules/rosa_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/rosa_cluster.py -------------------------------------------------------------------------------- /plugins/modules/rosa_cluster_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/rosa_cluster_info.py -------------------------------------------------------------------------------- /plugins/modules/route53_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/route53_zone.py -------------------------------------------------------------------------------- /plugins/modules/transit_gateway_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/plugins/modules/transit_gateway_route.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/requirements.yml -------------------------------------------------------------------------------- /roles/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roles/_archive/account_roles_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_create/README.md -------------------------------------------------------------------------------- /roles/_archive/account_roles_create/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_create/defaults/main.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_create/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_create/handlers/main.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_create/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/account_roles_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/account_roles_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_create/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_create/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_create/vars/main.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/account_roles_delete/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_delete/defaults/main.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_delete/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_delete/handlers/main.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_delete/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/account_roles_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_delete/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/account_roles_delete/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_delete/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/account_roles_delete/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/account_roles_delete/vars/main.yml -------------------------------------------------------------------------------- /roles/_archive/cluster_create/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_create/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/cluster_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_create/README.md -------------------------------------------------------------------------------- /roles/_archive/cluster_create/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/cluster_create 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_create/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/cluster_create 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_create/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_create/tasks/hcp_oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_create/tasks/hcp_oidc.yml -------------------------------------------------------------------------------- /roles/_archive/cluster_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/cluster_create/tests/cluster_info_output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_create/tests/cluster_info_output.yaml -------------------------------------------------------------------------------- /roles/_archive/cluster_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_create/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/cluster_create/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/cluster_create 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_delete/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/cluster_create 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/cluster_create 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/cluster_delete/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/cluster_delete/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/cluster_create 3 | -------------------------------------------------------------------------------- /roles/_archive/create_admin/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/create_admin/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/create_admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/create_admin/README.md -------------------------------------------------------------------------------- /roles/_archive/create_admin/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/create_admin 3 | -------------------------------------------------------------------------------- /roles/_archive/create_admin/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/create_admin 3 | -------------------------------------------------------------------------------- /roles/_archive/create_admin/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/create_admin/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/create_admin/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/create_admin/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/create_admin/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/create_admin/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/create_admin/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/create_admin 3 | -------------------------------------------------------------------------------- /roles/_archive/dns_resolver_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/dns_resolver_create/README.md -------------------------------------------------------------------------------- /roles/_archive/dns_resolver_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/dns_resolver_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/dns_resolver_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/dns_resolver_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/dns_resolver_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/dns_resolver_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_create/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_create/README.md -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/tasks/nat_gateway_routes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_create/tasks/nat_gateway_routes.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/tasks/vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_create/tasks/vpc.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_create/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_create/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_delete/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/tgw_delete 3 | -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/egress_vpc_delete/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/egress_vpc_delete/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_create/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_create/README.md -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/files/user_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_create/files/user_data.sh -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_create/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/jumphost_create/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_delete/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/jumphost_delete/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/jumphost_delete/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/README.md -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/defaults/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/classic/openshift_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/classic/openshift_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/classic/openshift_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/classic/openshift_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/classic/openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/classic/openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/classic/openshift_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/classic/openshift_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/classic/openshift_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/classic/openshift_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/classic/openshift_machine_api_aws_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/classic/openshift_machine_api_aws_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/hcp/openshift_capa_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/hcp/openshift_capa_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/hcp/openshift_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/hcp/openshift_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/hcp/openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/hcp/openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/hcp/openshift_control_plane_operator_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/hcp/openshift_control_plane_operator_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/hcp/openshift_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/hcp/openshift_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/hcp/openshift_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/hcp/openshift_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/hcp/openshift_kms_provider_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/hcp/openshift_kms_provider_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/files/hcp/openshift_kube_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/files/hcp/openshift_kube_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/handlers/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/meta/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/tasks/classic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/tasks/classic.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/tasks/hcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/tasks/hcp.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/classic/operator_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/classic/operator_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/classic/operator_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/classic/operator_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/classic/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/classic/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/classic/operator_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/classic/operator_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/classic/operator_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/classic/operator_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/classic/operator_machine_api_aws_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/classic/operator_machine_api_aws_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/old/operator_capa_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/old/operator_capa_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/old/operator_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/old/operator_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/old/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/old/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/old/operator_control_plane_operator_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/old/operator_control_plane_operator_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/old/operator_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/old/operator_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/old/operator_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/old/operator_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/old/operator_kms_provider_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/old/operator_kms_provider_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/old/operator_kube_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/old/operator_kube_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/operator_capa_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/operator_capa_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/operator_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/operator_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/operator_control_plane_operator_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/operator_control_plane_operator_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/operator_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/operator_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/operator_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/operator_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/operator_kms_provider_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/operator_kms_provider_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/templates/hcp/operator_kube_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/templates/hcp/operator_kube_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_create/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_create/vars/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_delete/defaults/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_delete/handlers/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_delete/meta/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/tasks/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_delete/tasks/roles.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_delete/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/operator_roles_delete/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/operator_roles_delete/vars/main.yml -------------------------------------------------------------------------------- /roles/_archive/post_install/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/post_install/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/post_install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/post_install/README.md -------------------------------------------------------------------------------- /roles/_archive/post_install/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/post_install 3 | -------------------------------------------------------------------------------- /roles/_archive/post_install/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/post_install 3 | -------------------------------------------------------------------------------- /roles/_archive/post_install/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/post_install/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/post_install/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/post_install/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/post_install/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/post_install/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/post_install/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/post_install 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_create/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/proxy_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/README.md -------------------------------------------------------------------------------- /roles/_archive/proxy_create/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/proxy_create 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_create/files/squid-ca-cert-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/files/squid-ca-cert-key.pem -------------------------------------------------------------------------------- /roles/_archive/proxy_create/files/squid-ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/files/squid-ca-cert.pem -------------------------------------------------------------------------------- /roles/_archive/proxy_create/files/squid-ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/files/squid-ca-key.pem -------------------------------------------------------------------------------- /roles/_archive/proxy_create/files/user_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/files/user_data.sh -------------------------------------------------------------------------------- /roles/_archive/proxy_create/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_create/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/proxy_create/templates/user_data.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/templates/user_data.sh.j2 -------------------------------------------------------------------------------- /roles/_archive/proxy_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_create/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/proxy_create/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_delete/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/proxy_delete/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/proxy_delete/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/jumphost_create 3 | -------------------------------------------------------------------------------- /roles/_archive/tgw_create/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/tgw_create/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/tgw_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/tgw_create/README.md -------------------------------------------------------------------------------- /roles/_archive/tgw_create/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/_archive/tgw_create/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/tgw_create/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/tgw_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/tgw_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/tgw_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/tgw_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/tgw_create/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/tgw_create/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/tgw_delete/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/tgw_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/tgw_delete 3 | -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/tgw_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/tgw_delete/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/tgw_delete/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/vpc_create/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_create/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/vpc_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_create/README.md -------------------------------------------------------------------------------- /roles/_archive/vpc_create/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_create/defaults/main.yml -------------------------------------------------------------------------------- /roles/_archive/vpc_create/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/vpc_create/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/vpc_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/vpc_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/vpc_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_create/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/vpc_create/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_delete/.travis.yml -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_delete/README.md -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/vpc_delete 3 | -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/vpc -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_delete/tasks/main.yml -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_archive/vpc_delete/tests/test.yml -------------------------------------------------------------------------------- /roles/_archive/vpc_delete/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/vpc -------------------------------------------------------------------------------- /roles/_vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_vars/README.md -------------------------------------------------------------------------------- /roles/_vars/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_vars/defaults/main.yml -------------------------------------------------------------------------------- /roles/_vars/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_vars/tasks/main.yml -------------------------------------------------------------------------------- /roles/_vars/tasks/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/_vars/tasks/validate.yml -------------------------------------------------------------------------------- /roles/finish/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/finish/.travis.yml -------------------------------------------------------------------------------- /roles/finish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/finish/README.md -------------------------------------------------------------------------------- /roles/finish/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/finish -------------------------------------------------------------------------------- /roles/finish/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for roles/finish -------------------------------------------------------------------------------- /roles/finish/meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - _vars 3 | -------------------------------------------------------------------------------- /roles/finish/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/finish/tasks/main.yml -------------------------------------------------------------------------------- /roles/finish/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/finish/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/finish/tests/test.yml -------------------------------------------------------------------------------- /roles/finish/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/finish -------------------------------------------------------------------------------- /roles/kms_create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/kms_create/README.md -------------------------------------------------------------------------------- /roles/kms_create/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/kms_create -------------------------------------------------------------------------------- /roles/kms_create/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/kms_create/handlers/main.yml -------------------------------------------------------------------------------- /roles/kms_create/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/kms_create/meta/main.yml -------------------------------------------------------------------------------- /roles/kms_create/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/kms_create/tasks/main.yml -------------------------------------------------------------------------------- /roles/kms_create/templates/kms-policy.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/kms_create/templates/kms-policy.json.j2 -------------------------------------------------------------------------------- /roles/kms_create/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/kms_create/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/kms_create/tests/test.yml -------------------------------------------------------------------------------- /roles/kms_create/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/kms_create 3 | -------------------------------------------------------------------------------- /roles/network_math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/network_math/README.md -------------------------------------------------------------------------------- /roles/network_math/tasks/egress_vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/network_math/tasks/egress_vpc.yml -------------------------------------------------------------------------------- /roles/network_math/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/network_math/tasks/main.yml -------------------------------------------------------------------------------- /roles/network_math/tasks/rosa_vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/network_math/tasks/rosa_vpc.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/README.md -------------------------------------------------------------------------------- /roles/rosa_account_roles/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/defaults/main.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/classic/4.14/sts_installer_permission_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/classic/4.14/sts_installer_permission_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/classic/4.14/sts_installer_trust_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/classic/4.14/sts_installer_trust_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/classic/4.14/sts_instance_controlplane_permission_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/classic/4.14/sts_instance_controlplane_permission_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/classic/4.14/sts_instance_controlplane_trust_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/classic/4.14/sts_instance_controlplane_trust_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/classic/4.14/sts_instance_worker_permission_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/classic/4.14/sts_instance_worker_permission_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/classic/4.14/sts_instance_worker_trust_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/classic/4.14/sts_instance_worker_trust_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/classic/4.14/sts_support_permission_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/classic/4.14/sts_support_permission_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/classic/4.14/sts_support_trust_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/classic/4.14/sts_support_trust_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/hcp/4.14/sts_installer_trust_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/hcp/4.14/sts_installer_trust_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/hcp/4.14/sts_instance_worker_trust_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/hcp/4.14/sts_instance_worker_trust_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/files/hcp/4.14/sts_support_trust_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/files/hcp/4.14/sts_support_trust_policy.json -------------------------------------------------------------------------------- /roles/rosa_account_roles/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for rosa_account_roles 3 | -------------------------------------------------------------------------------- /roles/rosa_account_roles/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/meta/main.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/tasks/absent/classic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/tasks/absent/classic.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/tasks/absent/hcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/tasks/absent/hcp.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/tasks/absent/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/tasks/absent/main.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/tasks/main.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/tasks/present/classic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/tasks/present/classic.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/tasks/present/hcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/tasks/present/hcp.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/tasks/present/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/tasks/present/main.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/rosa_account_roles/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_account_roles/tests/test.yml -------------------------------------------------------------------------------- /roles/rosa_account_roles/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for rosa_account_roles 3 | -------------------------------------------------------------------------------- /roles/rosa_cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_cluster/README.md -------------------------------------------------------------------------------- /roles/rosa_cluster/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_cluster/defaults/main.yml -------------------------------------------------------------------------------- /roles/rosa_cluster/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for rosa_cluster 3 | -------------------------------------------------------------------------------- /roles/rosa_cluster/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_cluster/meta/main.yml -------------------------------------------------------------------------------- /roles/rosa_cluster/tasks/absent/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_cluster/tasks/absent/main.yml -------------------------------------------------------------------------------- /roles/rosa_cluster/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_cluster/tasks/main.yml -------------------------------------------------------------------------------- /roles/rosa_cluster/tasks/present/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_cluster/tasks/present/main.yml -------------------------------------------------------------------------------- /roles/rosa_cluster/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/rosa_cluster/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_cluster/tests/test.yml -------------------------------------------------------------------------------- /roles/rosa_cluster/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for rosa_cluster 3 | -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_dns_resolver/README.md -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_dns_resolver/defaults/main.yml -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for rosa_dns_resolver 3 | -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_dns_resolver/meta/main.yml -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/tasks/absent/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_dns_resolver/tasks/absent/main.yml -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_dns_resolver/tasks/main.yml -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/tasks/present/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_dns_resolver/tasks/present/main.yml -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_dns_resolver/tests/test.yml -------------------------------------------------------------------------------- /roles/rosa_dns_resolver/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for rosa_dns_resolver 3 | -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/README.md -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/defaults/main.yml -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/files/basic_user_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/files/basic_user_data.sh -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/files/squid-ca-cert-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/files/squid-ca-cert-key.pem -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/files/squid-ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/files/squid-ca-cert.pem -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/files/squid-ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/files/squid-ca-key.pem -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for rosa_ec2_instance 3 | -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/meta/main.yml -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/tasks/absent/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/tasks/absent/main.yml -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/tasks/main.yml -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/tasks/present/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/tasks/present/main.yml -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/templates/proxy_user_data.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/templates/proxy_user_data.sh.j2 -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_ec2_instance/tests/test.yml -------------------------------------------------------------------------------- /roles/rosa_ec2_instance/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for rosa_ec2_instance 3 | -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/README.md -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/defaults/main.yml -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for rosa_vpc 3 | -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/meta/main.yml -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/tasks/absent/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/tasks/absent/main.yml -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/tasks/main.yml -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/tasks/present/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/tasks/present/main.yml -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/tasks/present/nat_gateway_routes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/tasks/present/nat_gateway_routes.yml -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/tasks/present/vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/tasks/present/vpc.yml -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_egress_vpc/tests/test.yml -------------------------------------------------------------------------------- /roles/rosa_egress_vpc/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for rosa_vpc 3 | -------------------------------------------------------------------------------- /roles/rosa_operator_roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/README.md -------------------------------------------------------------------------------- /roles/rosa_operator_roles/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/defaults/main.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/files/classic/openshift_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/files/classic/openshift_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/files/classic/openshift_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/files/classic/openshift_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/files/classic/openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/files/classic/openshift_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/files/classic/openshift_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/files/classic/openshift_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/files/classic/openshift_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/files/classic/openshift_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/files/classic/openshift_machine_api_aws_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/files/classic/openshift_machine_api_aws_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for rosa_operator_roles 3 | -------------------------------------------------------------------------------- /roles/rosa_operator_roles/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/meta/main.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/tasks/absent/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/tasks/absent/main.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/tasks/absent/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/tasks/absent/roles.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/tasks/main.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/tasks/present/classic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/tasks/present/classic.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/tasks/present/hcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/tasks/present/hcp.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/tasks/present/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/tasks/present/main.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/classic/operator_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/classic/operator_cloud_credential_operator_cloud_credential_operator_iam_ro_creds_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/classic/operator_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/classic/operator_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/classic/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/classic/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/classic/operator_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/classic/operator_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/classic/operator_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/classic/operator_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/classic/operator_machine_api_aws_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/classic/operator_machine_api_aws_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/old/operator_capa_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/old/operator_capa_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/old/operator_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/old/operator_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/old/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/old/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/old/operator_control_plane_operator_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/old/operator_control_plane_operator_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/old/operator_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/old/operator_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/old/operator_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/old/operator_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/old/operator_kms_provider_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/old/operator_kms_provider_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/old/operator_kube_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/old/operator_kube_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/operator_capa_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/operator_capa_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/operator_cloud_network_config_controller_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/operator_cloud_network_config_controller_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/operator_cluster_csi_drivers_ebs_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/operator_control_plane_operator_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/operator_control_plane_operator_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/operator_image_registry_installer_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/operator_image_registry_installer_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/operator_ingress_operator_cloud_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/operator_ingress_operator_cloud_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/operator_kms_provider_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/operator_kms_provider_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/templates/hcp/operator_kube_controller_manager_credentials_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/templates/hcp/operator_kube_controller_manager_credentials_policy.json -------------------------------------------------------------------------------- /roles/rosa_operator_roles/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/rosa_operator_roles/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_operator_roles/tests/test.yml -------------------------------------------------------------------------------- /roles/rosa_operator_roles/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for rosa_operator_roles 3 | -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_transit_gateway/README.md -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_transit_gateway/defaults/main.yml -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for rosa_transit_gateway 3 | -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_transit_gateway/meta/main.yml -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/tasks/absent/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_transit_gateway/tasks/absent/main.yml -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_transit_gateway/tasks/main.yml -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/tasks/present/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_transit_gateway/tasks/present/main.yml -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_transit_gateway/tests/test.yml -------------------------------------------------------------------------------- /roles/rosa_transit_gateway/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for rosa_transit_gateway 3 | -------------------------------------------------------------------------------- /roles/rosa_vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/README.md -------------------------------------------------------------------------------- /roles/rosa_vpc/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/defaults/main.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for rosa_vpc 3 | -------------------------------------------------------------------------------- /roles/rosa_vpc/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/meta/main.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/tasks/absent/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/tasks/absent/main.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/tasks/absent/vpc_endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/tasks/absent/vpc_endpoints.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/tasks/main.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/tasks/present/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/tasks/present/main.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/tasks/present/nat_gateway_routes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/tasks/present/nat_gateway_routes.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/tasks/present/vpc_endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/tasks/present/vpc_endpoints.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/rosa_vpc/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/rosa_vpc/tests/test.yml -------------------------------------------------------------------------------- /roles/rosa_vpc/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for rosa_vpc 3 | -------------------------------------------------------------------------------- /roles/service_quotas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/service_quotas/README.md -------------------------------------------------------------------------------- /roles/service_quotas/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for service-quotas 3 | -------------------------------------------------------------------------------- /roles/service_quotas/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for service-quotas 3 | -------------------------------------------------------------------------------- /roles/service_quotas/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/service_quotas/meta/main.yml -------------------------------------------------------------------------------- /roles/service_quotas/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/service_quotas/tasks/main.yml -------------------------------------------------------------------------------- /roles/service_quotas/tasks/run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/service_quotas/tasks/run.yml -------------------------------------------------------------------------------- /roles/service_quotas/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/service_quotas/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/roles/service_quotas/tests/test.yml -------------------------------------------------------------------------------- /roles/service_quotas/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for service-quotas 3 | -------------------------------------------------------------------------------- /sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/sts.yaml -------------------------------------------------------------------------------- /uninstall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/uninstall.yml -------------------------------------------------------------------------------- /vars/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/vars/main.yaml -------------------------------------------------------------------------------- /vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-mobb/ansible-rosa/HEAD/vpc.yaml --------------------------------------------------------------------------------