mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
a9d97708ee
Allows databases on pre-existing MySQL servers to be created and managed by Terraform.
13 lines
210 B
Go
13 lines
210 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/builtin/providers/mysql"
|
|
"github.com/hashicorp/terraform/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
ProviderFunc: mysql.Provider,
|
|
})
|
|
}
|