Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consul Data Sources for nodes and services #11729

Merged
merged 23 commits into from
Feb 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4b73ac7
Add the `circonus_agent_self` data source.
sean- Feb 6, 2017
77d7e25
Remove stale code that would never be called at present.
sean- Feb 6, 2017
7063ee1
Update `github.com/hashicorp/consul/api` to the latest and greatest.
sean- Feb 7, 2017
15fb969
Add an attribute reader interface and a config reader implementation.
sean- Feb 9, 2017
db2f217
Change the signature of map writer to take a map that isn't a pointer…
sean- Feb 9, 2017
ac12946
Add a datasource for catalog nodes.
sean- Feb 9, 2017
0d5ee1e
Catch API drift with Consul.
sean- Feb 9, 2017
5567732
Remove underscores from private identifiers that were not to be expor…
sean- Feb 10, 2017
1476445
Update `consul_catalog_nodes` to conform to normal resource guidelines.
sean- Feb 10, 2017
efb76b3
Update the style of the `consul_catalog_nodes` data source.
sean- Feb 13, 2017
0d04902
Remove unused helper functions.
sean- Feb 13, 2017
974415d
Move the query options schema into its own set and nested collection …
sean- Feb 13, 2017
41e4208
Commit miss: `s/query_opts/query_options/`
sean- Feb 13, 2017
5992547
Add a `consul_catalog_service` resource to obtain detailed informatio…
sean- Feb 15, 2017
4003c47
Remove some accidentally leaked `q.Q()` calls from earlier debugging.x
sean- Feb 15, 2017
b7c9ded
Add a `consul_catalog_services` resource that enumerates the list of …
sean- Feb 15, 2017
9d06a47
Add docs for the `consul_catalog_services` data source.
sean- Feb 15, 2017
1c7a924
Update and provide docs to the `consul_catalog_service` data source.
sean- Feb 15, 2017
e7a8f25
Push out the last of the docs and fixes for the `consul_catalog_nodes…
sean- Feb 15, 2017
99d91d1
Chase the update to the out parameter: `s/services/service/g`
sean- Feb 16, 2017
6df42d4
Add a link to the `consul_catalog_nodes` data source.
sean- Feb 16, 2017
dfb86a8
Fix a `go vet` issue re: missing arg to `fmt.Sprintf`.
sean- Feb 16, 2017
5f3b6ff
Add `consul_agent_self` docs and synchronize a few missing attributes.
sean- Feb 16, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions builtin/providers/consul/GNUmakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# env TESTARGS='-test.parallel=1 -run TestAccDataConsulAgentSelf_basic' TF_LOG=debug make test
test::
2>&1 env \
make -C ../../.. testacc TEST=./builtin/providers/consul | tee test.log
Loading