From 6a672f3948110d5ee3d958aa49d5419c6ff9b03d Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Fri, 11 Dec 2020 16:04:55 -0800 Subject: [PATCH] docs --- packer-plugin-sdk/communicator/doc.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 packer-plugin-sdk/communicator/doc.go diff --git a/packer-plugin-sdk/communicator/doc.go b/packer-plugin-sdk/communicator/doc.go new file mode 100644 index 000000000..30806b5d7 --- /dev/null +++ b/packer-plugin-sdk/communicator/doc.go @@ -0,0 +1,10 @@ +/* +Package communicator provides common steps for connecting to an instance +using the Packer communicator. These steps can be implemented by builders. +Normally, a builder will want to implement StepConnect, which is smart enough +to then determine which kind of communicator, and therefore which kind of +substep, it should implement. + +Various helper functions are also supplied. CommHost +*/ +package communicator