How to deploy an Automation Account with Python Packages through Terraform?

I am deploying a Terraform managed Azure Automation resource. In that resource, I have Python Runbooks that require non-default Python Packages to run. I can provide these packages through the UI, but how do I implement them with Terraform? Looking at Microsofts Terraform provider docs, the only resource I found that looked relevant was:
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/automation_module
This resource specified automation "module" however, which usually refers to PowerShell runbooks. Is there a separate terraform resource for Python Packages? Is it the same?