Files
vault/vendor/github.com/hashicorp/consul/api
Nicolas Corrarello 53ad302a31 Adding support for Consul 1.4 ACL system (#5586)
* Adding support for Consul 1.4 ACL system

* Working tests

* Fixed logic gate

* Fixed logical gate that evaluate empty policy or empty list of policy names

* Ensure tests are run against appropiate Consul versions

* Running tests against official container with a 1.4.0-rc1 tag

* policies can never be nil (as even if it is empty will be an empty array)

* addressing feedback, refactoring tests

* removing cast

* converting old lease field to ttl, adding max ttl

* cleanup

* adding missing test

* testing wrong version

* adding support for local tokens

* addressing feedback
2018-11-02 10:44:12 -04:00
..
2018-10-15 14:36:55 -07:00
2018-10-15 14:36:55 -07:00
2018-10-03 09:55:26 -07:00
2018-07-06 12:09:34 -04:00
2018-07-06 12:09:34 -04:00
2017-11-07 11:57:05 -05:00
2016-02-18 15:06:02 -05:00
2018-10-15 14:36:55 -07:00
2017-10-27 15:06:04 -04:00
2018-07-11 16:04:02 -04:00
2018-10-03 09:55:26 -07:00
2017-10-27 15:06:04 -04:00
2017-09-15 12:44:57 -04:00
2017-10-27 15:06:04 -04:00
2017-09-05 18:06:47 -04:00
2017-03-30 20:03:13 -04:00
2018-07-06 12:09:34 -04:00
2016-02-18 15:06:02 -05:00
2018-10-03 09:55:26 -07:00
2018-07-11 16:04:02 -04:00
2017-07-18 10:15:54 -04:00
2016-11-02 15:34:30 -04:00
2016-02-18 15:06:02 -05:00

Consul API client

This package provides the api package which attempts to provide programmatic access to the full Consul API.

Currently, all of the Consul APIs included in version 0.6.0 are supported.

Documentation

The full documentation is available on Godoc

Usage

Below is an example of using the Consul client:

package main

import "github.com/hashicorp/consul/api"
import "fmt"

func main() {
	// Get a new client
	client, err := api.NewClient(api.DefaultConfig())
	if err != nil {
		panic(err)
	}

	// Get a handle to the KV API
	kv := client.KV()

	// PUT a new KV pair
	p := &api.KVPair{Key: "REDIS_MAXCLIENTS", Value: []byte("1000")}
	_, err = kv.Put(p, nil)
	if err != nil {
		panic(err)
	}

	// Lookup the pair
	pair, _, err := kv.Get("REDIS_MAXCLIENTS", nil)
	if err != nil {
		panic(err)
	}
	fmt.Printf("KV: %v %s\n", pair.Key, pair.Value)
}

To run this example, start a Consul server:

consul agent -dev

Copy the code above into a file such as main.go.

Install and run. You'll see a key (REDIS_MAXCLIENTS) and value (1000) printed.

$ go get
$ go run main.go
KV: REDIS_MAXCLIENTS 1000

After running the code, you can also view the values in the Consul UI on your local machine at http://localhost:8500/ui/dc1/kv