Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .web-docs/components/builder/classic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,13 @@ The `builder_communicator` has the following options:
useful if, for example, packer hangs on a connection after a reboot.
Example: `5m`. Disabled by default.

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

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

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

Expand Down
Loading