23 lines
313 B
Go
23 lines
313 B
Go
package amazonebs
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/packer"
|
|
)
|
|
|
|
type config struct {
|
|
AccessKey string
|
|
Region string
|
|
SecretKey string
|
|
SourceAmi string
|
|
}
|
|
|
|
type Builder struct {
|
|
config config
|
|
}
|
|
|
|
func (*Builder) Prepare(interface{}) error {
|
|
return nil
|
|
}
|
|
|
|
func (*Builder) Run(packer.Build, packer.Ui) {}
|