Skip to content

Commit

Permalink
Add installation instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefansundin committed Nov 25, 2017
1 parent cd07500 commit c10ea83
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ bandaid [until it is supported in Terraform itself](https://github.com/hashicorp

See [main.tf](main.tf).

#### Installation

On Linux:

```shell
mkdir -p terraform.d/plugins/linux_amd64
wget -O terraform.d/plugins/linux_amd64/terraform-provider-ssh.xz https://github.com/stefansundin/terraform-provider-ssh/releases/download/v0.0.1/terraform-provider-ssh_0.0.1_linux_amd64.xz
unxz terraform.d/plugins/linux_amd64/terraform-provider-ssh.xz
chmod +x terraform.d/plugins/linux_amd64/terraform-provider-ssh
terraform init
```

On Mac:

```shell
mkdir -p terraform.d/plugins/darwin_amd64
wget -O terraform.d/plugins/darwin_amd64/terraform-provider-ssh.xz https://github.com/stefansundin/terraform-provider-ssh/releases/download/v0.0.1/terraform-provider-ssh_0.0.1_darwin_amd64.xz
unxz terraform.d/plugins/darwin_amd64/terraform-provider-ssh.xz
chmod +x terraform.d/plugins/darwin_amd64/terraform-provider-ssh
terraform init
```

#### TODO

- Support another hop (ProxyJump-like behavior)
Expand Down

0 comments on commit c10ea83

Please sign in to comment.