Fix import path on provider-localfile
This commit is contained in:
parent
7a07c4e99c
commit
4622960835
|
@ -1,12 +1,12 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"github.com/hashicorp/terraform/builtin/providers/localfile"
|
||||
"github.com/hashicorp/terraform/builtin/providers/local"
|
||||
"github.com/hashicorp/terraform/plugin"
|
||||
)
|
||||
|
||||
func main() {
|
||||
plugin.Serve(&plugin.ServeOpts{
|
||||
ProviderFunc: localfile.Provider,
|
||||
ProviderFunc: local.Provider,
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue