Skip to content

Commit e04d05d

Browse files
authored
Merge pull request #150 from hashicorp/rel_1.1.5
cut release 1.1.5
2 parents 8bf5d61 + 3334d95 commit e04d05d

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

.web-docs/components/builder/iso/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,9 +708,13 @@ provisioner](/packer/docs/provisioner/file).
708708
useful if, for example, packer hangs on a connection after a reboot.
709709
Example: `5m`. Disabled by default.
710710

711-
- `ssh_remote_tunnels` ([]string) -
711+
- `ssh_remote_tunnels` ([]string) - Remote tunnels forward a port from your local machine to the instance.
712+
Format: ["REMOTE_PORT:LOCAL_HOST:LOCAL_PORT"]
713+
Example: "9090:localhost:80" forwards localhost:9090 on your machine to port 80 on the instance.
712714

713-
- `ssh_local_tunnels` ([]string) -
715+
- `ssh_local_tunnels` ([]string) - Local tunnels forward a port from the instance to your local machine.
716+
Format: ["LOCAL_PORT:REMOTE_HOST:REMOTE_PORT"]
717+
Example: "8080:localhost:3000" allows the instance to access your local machine’s port 3000 via localhost:8080.
714718

715719
<!-- End of code generated from the comments of the SSH struct in communicator/config.go; -->
716720

.web-docs/components/builder/vmcx/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -527,9 +527,13 @@ In HCL2:
527527
useful if, for example, packer hangs on a connection after a reboot.
528528
Example: `5m`. Disabled by default.
529529

530-
- `ssh_remote_tunnels` ([]string) -
530+
- `ssh_remote_tunnels` ([]string) - Remote tunnels forward a port from your local machine to the instance.
531+
Format: ["REMOTE_PORT:LOCAL_HOST:LOCAL_PORT"]
532+
Example: "9090:localhost:80" forwards localhost:9090 on your machine to port 80 on the instance.
531533

532-
- `ssh_local_tunnels` ([]string) -
534+
- `ssh_local_tunnels` ([]string) - Local tunnels forward a port from the instance to your local machine.
535+
Format: ["LOCAL_PORT:REMOTE_HOST:REMOTE_PORT"]
536+
Example: "8080:localhost:3000" allows the instance to access your local machine’s port 3000 via localhost:8080.
533537

534538
<!-- End of code generated from the comments of the SSH struct in communicator/config.go; -->
535539

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
1919
packer {
2020
required_plugins {
2121
hyperv = {
22-
version = ">= 1.1.4"
22+
version = ">= 1.1.5"
2323
source = "github.com/hashicorp/hyperv"
2424
}
2525
}

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import "github.com/hashicorp/packer-plugin-sdk/version"
77

88
var (
99
Version = "1.1.5"
10-
VersionPrerelease = "dev"
10+
VersionPrerelease = ""
1111
VersionMetadata = ""
1212
PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)
1313
)

0 commit comments

Comments
 (0)