mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 12:37:59 +00:00 
			
		
		
		
	This also temporarily disables couchbase, elasticsearch, and mongodbatlas because the `Serve` function needs to change signatures and those plugins are vendored in from external repos, causing problems when building.
		
			
				
	
	
		
			30 lines
		
	
	
		
			461 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			461 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"log"
 | 
						|
	"os"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/plugins/database/mongodb"
 | 
						|
	dbplugin "github.com/hashicorp/vault/sdk/database/dbplugin/v5"
 | 
						|
)
 | 
						|
 | 
						|
func main() {
 | 
						|
	err := Run()
 | 
						|
	if err != nil {
 | 
						|
		log.Println(err)
 | 
						|
		os.Exit(1)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Run instantiates a MongoDB object, and runs the RPC server for the plugin
 | 
						|
func Run() error {
 | 
						|
	dbType, err := mongodb.New()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	dbplugin.Serve(dbType.(dbplugin.Database))
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |