Commit Graph

1174 Commits

Author SHA1 Message Date
Nils Rocine 6481c13bcc Added details in the github auth docs for the website. These details clarify end-to-end use of the github auth backend. Specifically: noting how to create a usable GitHub PAT and an example of how to auth with the PAT. 2015-05-14 13:20:58 -07:00
Seth Vargo fc2ac74c5f Improve error message when TLS is disabled
Fixes #198
2015-05-14 10:33:38 -04:00
Seth Vargo 031d33e2e5 Remove reference to Vagrantfile
Fixes #186
2015-05-14 09:48:36 -04:00
Seth Vargo e6007de65a Merge pull request #199 from tpounds/fix-doc-typo
Fix minor documentation typo.
2015-05-14 09:47:43 -04:00
Jonathan Sokolowski 6746a24c78 credential/app-id: Test DeleteOperation 2015-05-14 22:30:02 +10:00
Jonathan Sokolowski 283e8ccacb logical/framework: Add delete to PathMap 2015-05-14 22:28:33 +10:00
Jonathan Sokolowski 896f9cd4d3 logical/framework: Add delete to PathStruct 2015-05-14 22:25:30 +10:00
Trevor Pounds 7ce3718191 Fix minor typo. 2015-05-13 18:08:11 -07:00
Armon Dadgar 45d8c923f0 Merge pull request #187 from ceh/win-issue-95
command/token: add Env to Helper
2015-05-13 17:33:00 -07:00
Armon Dadgar 1b92069120 Merge pull request #190 from Banno/b-189-zk-version-conflict
fixes #189; zk version conflict
2015-05-13 17:12:31 -07:00
Mitchell Hashimoto fd6104e4d6 up version for dev 2015-05-13 10:37:35 -07:00
Mitchell Hashimoto 644caf74c4 update CHANGELOG 2015-05-13 10:35:20 -07:00
Seth Vargo be74ed6659 Merge pull request #192 from pquentin/patch-1
Fix typo
2015-05-13 09:52:37 -04:00
Quentin Pradet 99e8b824d5 Fix typo
programtic -> programmatic
2015-05-13 09:08:15 +02:00
Armon Dadgar 42b28ca03d http: PUT to sys/auth should be the same as POST 2015-05-12 17:57:39 -07:00
Mitchell Hashimoto cbf7d6a8d7 terraform: remove CBD for now while TF bug exists 2015-05-12 16:08:29 -07:00
Mitchell Hashimoto fc247a3b4c terraform: LC should have CBD 2015-05-12 16:07:16 -07:00
Mitchell Hashimoto a1e9131374 terraform: don't uniquely name ASG 2015-05-12 15:40:53 -07:00
Spencer Herzberg 3a6a060b2e recursive zk delete 2015-05-12 11:50:32 -05:00
Spencer Herzberg f3f6466730 fixes #189; zk version conflict
* multiple Puts to the same node causes zk errors
2015-05-12 09:12:00 -05:00
Seth Vargo 511ddb18c7 Merge pull request #188 from shinji62/hotfix/mistypo
Fix Error message
2015-05-12 09:37:36 -04:00
Etourneau Gwenn a3fe4b889f Fix Error message 2015-05-12 14:32:09 +09:00
Emil Hessman f40dba1c48 command/token: add Env to Helper
Specify environment variables on the Helper rather than on
the command line.

Fixes command/token test failures on Windows.
2015-05-12 07:22:38 +02:00
Mitchell Hashimoto 740e7b5f20 terraform: add ELB output 2015-05-11 16:27:43 -07:00
Mitchell Hashimoto c014df640c terraform: fix some issues 2015-05-11 16:26:25 -07:00
Mitchell Hashimoto fbc5de46fc terraform: make ELB, docs 2015-05-11 16:19:29 -07:00
Mitchell Hashimoto e1d472d3be terraform: deploy Vault to AWS 2015-05-11 15:50:00 -07:00
Mitchell Hashimoto de538b2387 website: bump 2015-05-11 11:47:36 -07:00
Mitchell Hashimoto 91a852e259 cli: should be != 2015-05-11 11:45:48 -07:00
Mitchell Hashimoto fbc051a941 cli: typo 2015-05-11 11:45:02 -07:00
Mitchell Hashimoto a641510ed8 cli: fix dev on version flga 2015-05-11 11:44:44 -07:00
Mitchell Hashimoto 20d27ca099 website: note PGP key 2015-05-11 11:34:38 -07:00
Mitchell Hashimoto 81fc76d598 scripts: fix idempotency issue 2015-05-11 11:31:47 -07:00
Mitchell Hashimoto 756fcba604 Update godeps with 0.1.2 2015-05-11 11:30:01 -07:00
Mitchell Hashimoto afbe744629 v0.1.2 2015-05-11 11:29:07 -07:00
Mitchell Hashimoto 8acc0fb9d3 update CHANGELOG 2015-05-11 11:28:22 -07:00
Mitchell Hashimoto ce5786d133 Rename skip verify env 2015-05-11 11:27:54 -07:00
Mitchell Hashimoto 7c180fb6fd Merge pull request #181 from jefferai/fix-ca-path-walk
Fix CA path walking, and add TLS-related env vars.
2015-05-11 11:26:47 -07:00
Mitchell Hashimoto 66c8d2dd2a command: fix tests 2015-05-11 11:25:45 -07:00
Mitchell Hashimoto 704499606e scripts: PGP sign SHASUMs [GH-152] 2015-05-11 11:23:43 -07:00
Armon Dadgar 8f4ddfd904 vault: adding test for e33a904 2015-05-11 11:16:21 -07:00
Armon Dadgar 073820a6cc command/token: Use cmd on windows instead of sh 2015-05-11 11:08:08 -07:00
Mitchell Hashimoto b0c688cb8b update CHANGELOG 2015-05-11 11:01:52 -07:00
Mitchell Hashimoto 7bff682e8e command/*: -tls-skip-verify [GH-130] 2015-05-11 11:01:52 -07:00
Jeff Mitchell 4f8c9e8fe2 This adds one bugfix and one feature enhancement.
Bugfix: When walking a given CA path, the walk gives both files and
directories to the function. However, both were being passed in to be
read as certificates, with the result that "." (the given directory for
the CA path) would cause an error. This fixes that problem by simply
checking whether the given path in the walk is a directory or a file.

Feature enhancement: VAULT_CACERT, VAULT_CAPATH, and VAULT_INSECURE now
perform as expected.
2015-05-11 17:58:56 +00:00
Armon Dadgar 96e3bac87a website: Document overwrite behavior. Fixes #182 2015-05-11 10:58:29 -07:00
Mitchell Hashimoto 42d6b2a916 http: allow header for auth token [GH-124] 2015-05-11 10:56:58 -07:00
Armon Dadgar 47cfc85079 physical/consul: Fixing read of leader when standby. Fixes #178 2015-05-11 10:54:29 -07:00
Mitchell Hashimoto 0cea01607b update CL 2015-05-11 10:46:11 -07:00
Mitchell Hashimoto 1ca0b2340c credential/app-id: add hash of user/app ID to metadata for logs 2015-05-11 10:46:11 -07:00