This provider enables SSH port forwarding in Terraform.
- Go 84.6%
- HCL 8.5%
- HTML 3.6%
- Makefile 3.3%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .github | ||
| example | ||
| provider | ||
| ssh | ||
| test | ||
| website | ||
| .gitignore | ||
| .goreleaser.yml | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| main.go | ||
| Makefile | ||
| README.md | ||
terraform-provider-ssh
This experimental provider enables SSH port forwarding in Terraform. It is intended as a bandaid until it is supported in Terraform itself.
Example
See main.tf.
Installation
Provider can be automatically installed using Terraform >= 0.13 by providing a terraform configuration block:
terraform {
required_providers {
ssh = {
source = "matthewbaggett/ssh"
}
}
}