Skip to content

golang-rennes/ovhcli

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoDoc Go Report Card

Build

mkdir -p $GOPATH/src/github.com/admdwrf/
cd $GOPATH/src/github.com/admdwrf/
git clone [email protected]:admdwrf/ovhcli.git
cd $GOPATH/src/github.com/admdwrf/ovhcli/ovhcli
go build
./ovhcli -h

Configuration

ovhcli uses go-ovh to connect on api.

Before run cli, you need set environment variables :

  • OVH_ENDPOINT,
  • OVH_APPLICATION_KEY,
  • OVH_APPLICATION_SECRET
  • OVH_CONSUMER_KEY

If either of these parameter is not provided, it will look for a configuration file at these paths :

  • ./ovh.conf
  • $HOME/.ovh.conf
  • /etc/ovh.conf
[default]
; general configuration: default endpoint
endpoint=ovh-eu

[ovh-eu]
; configuration specific to 'ovh-eu' endpoint
application_key=my_app_key
application_secret=my_application_secret
consumer_key=my_consumer_key

For more information about configuration : https://github.com/ovh/go-ovh

Use SDK

Example for listing domains

package main

import (
	"fmt"
	ovh "github.com/admdwrf/ovhcli"
)

func main() {
	client, err := ovh.NewClient()
	if err != nil {
		fmt.Printf("Error:%s", err)
	}

	domains, err := client.DomainList()
	if err != nil {
		fmt.Printf("Error:%s", err)
	}

	for _, domain := range domains {
		fmt.Printf("Domain:%s", domain.Domain)
	}
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%