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