mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-15 19:22:46 -06:00
cd7f69ab11
* Add a Arukas provider * Add dependencies for the Arukas provider * Add documents for the Arukas
13 lines
212 B
Go
13 lines
212 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/builtin/providers/arukas"
|
|
"github.com/hashicorp/terraform/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
ProviderFunc: arukas.Provider,
|
|
})
|
|
}
|