Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 524 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 524 Bytes

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"
        }
    }
}