Status: IN
The `automation()` context manager accepts `auto_install_deps=True` to automatically install required Ansible collections if they are missing.
Source: entries/2026/05/11/examples-07-azure-example_azure_web_stack.md
async with automation(
auto_install_deps=True,
verbose=True,
) as ftl:
# Missing Python deps for Ansible modules auto-installed
await ftl.azure.azcollection.azure_rm_resourcegroup(
name="myRG", location="eastus",
)