mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-28 09:39:58 -04:00
22 lines
284 B
Go
22 lines
284 B
Go
package amazon
|
|
|
|
type config struct {
|
|
AccessKey string
|
|
Region string
|
|
SecretKey string
|
|
SourceAmi string
|
|
}
|
|
|
|
type Builder struct {
|
|
config config
|
|
}
|
|
|
|
func (b *Builder) ConfigInterface() interface{} {
|
|
return &b.config
|
|
}
|
|
|
|
func (*Builder) Prepare() {
|
|
}
|
|
|
|
func (b *Builder) Build() {
|
|
}
|