You want to override a group variable for a specific host. Set a different ntp_server on web01.example.com.
You are asked to view the effective variables for a host. Describe how to do this in the UI.A. See the Explanation. Explanation: 1. Go to Inventories → Hosts → click on a host (e.g., web01.example.com). 2. Click the Details tab. 3. Scroll to view Variables — these include host vars and inherited ones. 4. No merging logic shown, but explicit variables are listed. 5. For full view, use ansible-inventory --host web01.example.com.
You want to manage variables as a file instead of YAML inline. Describe how to import variable files in the controller.
Using CLI, assign a variable region: us-east to group web_servers.A. See the Explanation. Explanation: 1. Get group ID: awx groups list --inventory <inventory_id> | grep web_servers 2. Add variable: awx groups modify <group_id> --variables '{"region": "us-east"}' 3. Confirm with: awx groups get <group_id>
Assign a tag critical: true to a host prod01.example.com using CLI.
You are provided with a fresh Red Hat Enterprise Linux 8 server. Your task is to install Ansible Automation Platform 2.x on this system using Red Hat subscription and official repositories. Provide the complete installation process step-by-step.