Terraform module source using git ssh with tag

We’re using Azure DevOps private repos which appears to have a slightly different type of url. Any idea how to append the reference to a specific tag? I don’t see anything in the docs.

This works without a tag reference.
source = "git@ssh.dev.azure.com:v3/company/project/repo"

These don’t work. (I tried a bunch of other random things too.)
source = "git@ssh.dev.azure.com:v3/company/project/repo?tag=1.01" source = "git@ssh.dev.azure.com:v3/company/project/repo/ref/1.01"

1 Like