2014-05-29 19:28:38 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/terraform/builtin/providers/aws"
|
2014-06-03 16:26:31 -05:00
|
|
|
"github.com/hashicorp/terraform/plugin"
|
2014-05-29 19:28:38 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
plugin.Serve(new(aws.ResourceProvider))
|
|
|
|
}
|