Is it possible to use remote modules with the Terraform steps that rely on modules in private git repositories, using an SSH key pair (such as with an ssh-agent)? We use modules with a git source like the following, and Terraform needs access to git using SSH:
module "some_module" {
source = "git@github.com:myorg/my-terraform-modules.git//submodule"
}