AndrewChubatiuk / terraform-provider-ssh

This provider enables SSH port forwarding in Terraform.
Mozilla Public License 2.0
8 stars 9 forks source link

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 = "AndrewChubatiuk/ssh"
        }
    }
}