Merge pull request #1623 from chef/adamleff/http-resource-warning

[www] Add warning to the http resource documentation
This commit is contained in:
Dominik Richter 2017-04-05 16:41:08 +02:00 committed by GitHub
commit 7562138248
3 changed files with 12 additions and 0 deletions

View file

@ -6,6 +6,10 @@ title: About the http Resource
Use the `http` InSpec audit resource to test an http endpoint.
<p class="warning">Currently, this resource always executes on the host on which <code>inspec exec</code> is run, even if you use the <code>--target</code> option to remotely scan a different host.<br>
<br>
This will be corrected in a future version of InSpec. New InSpec releases are posted in the <a href="https://discourse.chef.io/c/chef-release" target="_blank">Release Announcements Category in Discourse</a>.</p>
## Syntax
An `http` resource block declares the configuration settings to be tested:

View file

@ -12,6 +12,7 @@ $color_purple_shade: rgba(151,110,229,0.4);
$color_blue_shade: rgba(91, 201, 163, 1);
$color_blue_shade_2: rgba(58, 142, 206, 1);
$color_lt_blue: #eaf8f9;
$color_lt_yellow: #fff7d5;
//fonts

View file

@ -121,3 +121,10 @@ hr {
.t-purple > a { //trigger for side bar LI
color: $color_purple !important;
}
.warning {
padding: 10px;
margin-bottom: 1em;
background: $color_lt_yellow;
border: 1px solid rgba(255,147,0,0.3);
}