Armon Dadgar
fb8b737ae8
website: Add more hardening tips
2017-06-26 14:00:36 -07:00
TheCodeAssassin
9e09899c69
Small typo fix ( #2921 )
2017-06-26 10:08:18 -04:00
Cameron Stokes
e28244cb8b
[docs]: Fix typo in hardening guide.
2017-06-22 22:20:17 -07:00
Armon Dadgar
e184c3fa0d
Merge pull request #2898 from hashicorp/docs-prod-hard
...
website: adding production hardening guide
2017-06-22 15:05:35 -07:00
Saj Goonatilleke
a576feeb1d
Fix a typo in the telemetry documentation ( #2910 )
2017-06-22 20:12:28 +01:00
Armon Dadgar
a40d24772e
Make recommendation vs requirement more clear
2017-06-22 11:02:18 -07:00
lisli
82f28aecbb
update news section with vault update and webinar update ( #2904 )
2017-06-22 17:07:36 +01:00
Armon Dadgar
266f55c5d9
Copy changes
2017-06-21 09:55:00 -07:00
Armon Dadgar
9ae6004dbe
website copy updates
2017-06-20 21:21:04 -07:00
Armon Dadgar
10a56c7ceb
website: adding production hardening guide
2017-06-20 17:44:54 -07:00
Jeff Mitchell
40ef2e5c85
More cleanup
...
Ping #2894
2017-06-20 10:46:24 -04:00
Jeff Mitchell
9edbf1c8d1
Clarify/fix some configuration info.
...
Fixes #2894
2017-06-20 10:12:59 -04:00
Jeff Mitchell
8f1f9d5522
Add ACL info to Consul configuration page
2017-06-19 19:39:52 -04:00
Eugene Bekker
1e3e83f7b0
Add Zyborg.Vault PowerShell module to libs list ( #2869 )
2017-06-17 11:24:13 -04:00
Raphael Randschau
db4e1b4a99
CouchDB physical backend ( #2880 )
2017-06-17 11:22:10 -04:00
Jeff Mitchell
cf7d56e8f3
Fix up CORS.
...
Ref #2021
2017-06-17 01:26:25 -04:00
Aaron Salvo
0303f51b68
Cors headers ( #2021 )
2017-06-17 00:04:55 -04:00
Jeff Mitchell
33ca94773f
Add DogStatsD metrics output. ( #2883 )
...
Fixes #2490
2017-06-16 23:51:46 -04:00
Jeff Mitchell
0ea8f17357
Add some warnings to the upgrade guide
2017-06-16 13:23:22 -04:00
vishalnayak
a50ce54603
doc: add radius to MFA backend docs
2017-06-15 18:31:53 -04:00
Jeff Mitchell
df229f5255
Fix typo in transit docs
2017-06-14 11:49:12 -04:00
Seth Vargo
789247d922
Add callouts for deprecations and beta ( #2854 )
...
This makes the sidebar emphasize the deprecated database backends more.
2017-06-14 16:11:16 +01:00
Nathan Valentine
3309496916
Clean up extra word in docs ( #2847 )
2017-06-12 13:08:54 -04:00
Jonathan Duncan
7038348b6d
Adding some visual separation for parameters ( #2841 )
...
Currently on the Documentation pages when parameters are listed, there is no visual separation between the parameter names, flags, and descriptions. This should make it a bit easier for humans to read.
2017-06-12 06:59:38 -04:00
Jeff Mitchell
8b3657d840
Add note about lowercasing usernames to userpass docs
2017-06-08 09:41:01 -04:00
Cameron Stokes
8e0ac2dbb0
[docs] Add notes about deprecated database backends. ( #2835 )
2017-06-07 23:45:01 -07:00
Cameron Stokes
d26bb4f2fb
[docs] Fix Mongodb link in sidebar.
2017-06-07 20:36:36 -07:00
Seth Vargo
00ab0d713f
Update packer and makefile
2017-06-07 16:00:30 -04:00
Jeff Mitchell
b8bc3d101b
Bump versions
2017-06-07 15:23:51 -04:00
Brian Kassouf
8d58b43906
update database interface in the docs
2017-06-07 11:20:13 -07:00
Jeff Mitchell
f6d48312d8
Add new transit features to documentation
2017-06-07 13:00:14 -04:00
Joel Thompson
4a934915d7
Resolve AWS IAM unique IDs ( #2814 )
2017-06-07 10:27:11 -04:00
Dan Brown
4f3fb87b9d
Docs typo fixes ( #2830 )
...
* Fix passing payload.json file to curl
* Correct API endpoint
2017-06-07 10:02:58 -04:00
Joel Thompson
7437ada31c
Check if there's a bound iam arn when renewing ( #2819 )
...
Previously, the renew method would ALWAYS check to ensure the
authenticated IAM principal ARN matched the bound ARN. However, there
is a valid use case in which no bound_iam_principal_arn is specified and
all bindings are done through inferencing. When a role is configured
like this, clients won't be able to renew their token because of the
check.
This now checks to ensure that the bound_iam_principal_arn is not empty
before requriing that it match the originally authenticated client.
Fixes #2781
2017-06-06 22:35:12 -04:00
Katie Bayes
cff022a65c
update middleman version from 24 to 26 ( #2824 )
2017-06-06 22:33:26 -04:00
Brian Kassouf
606fe393be
Use the role name in the db username ( #2812 )
2017-06-06 09:49:49 -04:00
sam boyer
789d7ab4e0
Minor typos & wordsmithing for clarity ( #2807 )
2017-06-05 09:32:09 -07:00
Jeff Mitchell
dad291c93c
Add plugin_directory to configuration page ( #2801 )
...
Fixes #2795
2017-06-03 08:11:03 -04:00
Igor Katson
88118dce0f
Add max_parallel parameter to MySQL backend. ( #2760 )
...
* Add max_parallel parameter to MySQL backend.
This limits the number of concurrent connections, so that vault does not die
suddenly from "Too many connections".
This can happen when e.g. vault starts up, and tries to load all the
existing leases in parallel. At the time of writing this, the value
ExpirationRestoreWorkerCount in vault/helper/consts/const.go is set to
64, meaning that if there are enough leases in the vault's DB, it will
generate AT LEAST 64 concurrent connections to MySQL when loading the
data during start-up. On certain configurations, e.g. smaller AWS
RDS/Aurora instances, this will cause Vault to fail startup.
* Fix a typo in mysql storage readme
2017-06-01 15:20:32 -07:00
Chris Hoffman
2ba85b49c7
Adding auth/aws-ec2 redirect to new docs location
2017-06-01 11:18:19 -04:00
Vishal Nayak
128907172f
doc: leases are generated only for dynamic secrets ( #2772 )
...
* doc: leases are generated only for dynamic secrets
* Address review feedback
2017-05-31 09:47:17 -04:00
Vishal Nayak
58b68dc35e
doc: PKI API table of contents ( #2756 )
...
* Add a table of contents for api/secret/pki
* Fix the read certificate link
2017-05-23 09:19:47 -04:00
Ryon
7d4fb9c8e4
Update news section with March 22 webinar video ( #2663 )
2017-05-22 20:19:52 -04:00
Jeff Mitchell
6a39ccc8d6
Remove comment about a non-existent validation section
...
Fixes #2524
2017-05-22 12:37:51 -04:00
vishalnayak
9bbeff3f44
doc: Fix the sample input value for cache_size
2017-05-19 12:32:44 -04:00
Jeff Mitchell
57461e3556
Fix revoke-secondary API addr
2017-05-19 00:53:49 -04:00
Kenny Gatdula
f9a71de87a
Update plugins.html.md ( #2744 )
...
Minor typo and spellcheck update
2017-05-18 14:06:44 -04:00
Martins Sipenko
f3f6b02682
Fix X-Vault-AWS-IAM-Server-ID
example ( #2728 )
2017-05-15 09:06:45 -04:00
Ken McVicker
3a354343af
Update install.html.md
...
Updates list of commands with the output of 0.6.4. Missing commands list, unwrap, capabilities, generate-root
2017-05-12 14:13:06 -06:00
Martins Sipenko
774c70e1e2
Update aws.html.md ( #2715 )
2017-05-12 12:10:11 -04:00