mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
bins/{google,mailgun}
This commit is contained in:
parent
0c9b65f3f4
commit
8f1cbc5ab7
10
builtin/bins/provider-google/main.go
Normal file
10
builtin/bins/provider-google/main.go
Normal file
@ -0,0 +1,10 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/hashicorp/terraform/builtin/providers/google"
|
||||
"github.com/hashicorp/terraform/plugin"
|
||||
)
|
||||
|
||||
func main() {
|
||||
plugin.Serve(google.Provider())
|
||||
}
|
1
builtin/bins/provider-google/main_test.go
Normal file
1
builtin/bins/provider-google/main_test.go
Normal file
@ -0,0 +1 @@
|
||||
package main
|
10
builtin/bins/provider-mailgun/main.go
Normal file
10
builtin/bins/provider-mailgun/main.go
Normal file
@ -0,0 +1,10 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/hashicorp/terraform/builtin/providers/mailgun"
|
||||
"github.com/hashicorp/terraform/plugin"
|
||||
)
|
||||
|
||||
func main() {
|
||||
plugin.Serve(mailgun.Provider())
|
||||
}
|
1
builtin/bins/provider-mailgun/main_test.go
Normal file
1
builtin/bins/provider-mailgun/main_test.go
Normal file
@ -0,0 +1 @@
|
||||
package main
|
Loading…
Reference in New Issue
Block a user