inspec/www/source/index.html.slim

219 lines
6.7 KiB
Text
Raw Normal View History

2016-09-11 23:26:00 +00:00
---
title: InSpec - Audit and Test Framework
---
2017-01-06 21:21:45 +00:00
/! animated banner
header.blue-gradient.margin-top-offset
.h-top.strict-center.purp-shade
h1.columns.t-white.strict-center data-enllax-ratio=".1" data-enllax-type="foreground" InSpec is compliance as code
2017-01-07 00:03:24 +00:00
img.grid-animate.strict-center style="opacity:0.8" src="/images/home/web.svg" /
/! diamond image
img.strict-center.bright-animate.3d-animate src="/images/home/diamond.png" /
/! canvas elements
#particles-js
canvas.particles-js-canvas-el /
/! style for callout icons
.row
.icon.shadow.code-trigger
img src="/images/open-close.svg" /
/! Surprise Code example
.code-pop
.strict-center
p.code.code-demo.code-pop-animate
span.code-attribute
| describe
| code
span.code-attribute
| do it
| { should be_inspec }
span.code-attribute
| end
/! Second Content
.row.margin-both
.large-9.medium-9.columns data-enllax-ratio=".1" data-enllax-type="foreground"
h2 Automated testing, codified
p#icon-trigger
| InSpec is an open-source testing framework for infrastructure with a human-readable language for specifying compliance, security and other policy requirements. Easily integrate automated tests that check for adherence to policy into any stage of your deployment pipeline.
/! Third Content
2017-01-06 21:21:45 +00:00
#icon-trigger.row.strict-center.margin-under-xs
.large-12.columns
2017-01-06 21:21:45 +00:00
hr.first/
small FEATURES OF INSPEC
h2 InSpec is compliance by design
2017-01-06 21:21:45 +00:00
hr.first/
/! images with text - grid of 4
.row.strict-center.margin-under
.large-3.medium-3.columns.strict-center
img.floating.icon-art src="/images/home/platform.svg" /
h3 Platform Agnostic
p
| InSpec supports all major operating systems and many applications out of the box.
.large-3.medium-3.columns.strict-center
img.icon-art src="/images/home/free.svg" /
h3 Free to run anywhere
2016-09-20 18:33:17 +00:00
p
| InSpec is a language that can easily express compliance as code, with the freedom to run anywhere.
.large-3.medium-3.columns.strict-center
img.icon-art src="/images/home/test.svg" /
h3 Test locally or remotely
p
| InSpec provides a local agent, as well as full remote testing support.
.large-3.medium-3.columns.strict-center
img.icon-art src="/images/home/language.svg" /
h3 Extensible language
p
| Easily extend the InSpec language to cover new operating systems, devices, or applications.
/! Fourth Content
/! style for callout icons
.row
.icon.shadow
img src="/images/circ-arrow.svg" /
.block-angl.blue-gradient
.section.purp-shade
.row.relative-top
.large-7.medium-7.columns.margin-top-xl.margin-under-xs data-enllax-ratio=".1" data-enllax-type="foreground"
small.t-dk Inspec for compliance
h2.t-white
| Transform your compliance and security requirements into simple code
#particles-second
canvas.particles-js-canvas-el
.row
2017-01-13 23:07:38 +00:00
.large-5.medium-5.columns.margin-under-xs
h3.t-white
i.fa.fa-angle-right.t-dk
| Codify agreements
p.t-white
| Combine profiles and customize them with overlays. Pick controls and define exceptions as code.
h3.t-white
i.fa.fa-angle-right.t-dk
| Add context to your tests
p.t-white
| Utilize many fields like descriptions, tags, and impact.
h3.t-white
i.fa.fa-angle-right.t-dk
| Apply to all systems
p.t-white
| Analyze everything using the same codified profiles and controls.
/! code
2017-01-13 23:07:38 +00:00
.large-6.medium-6.columns
.code-example.shadow.relative-top.margin-under
code.code-demo
span.code-attribute control
| 'sshd-21'
2017-01-13 23:07:38 +00:00
br/
span.code-token.indent title
| 'Set SSH Protocol to 2'
br/
span.code-token.indent desc
| 'A detailed description'
br/
span.code-token.indent impact
| 1.0 # This is critical
2017-01-13 23:07:38 +00:00
br/
span.code-token.indent ref
| 'compliance guide, section 2.1'
br/
br/
span.code-attribute.indent describe
| sshd_config
2017-01-13 23:07:38 +00:00
span.code-attribute do
br/
span.code-attribute.indent   its
| ('Protocol') { should cmp 2 }
2017-01-13 23:07:38 +00:00
br/
span.code-attribute.indent end
br/
span.code-attribute end
a.btn.strict-right.t-white.try-demo.mobile-hide Try the Demo
/! Next row
.row
.large-6.medium-6.columns.margin-under-xs data-enllax-ratio=".1" data-enllax-type="foreground"
small.t-dk Inspec for infrastructure
h2.t-white
| Solve your infrastructure testing needs simply and efficiently
.row
2017-01-13 23:07:38 +00:00
.large-5.medium-5.columns.margin-under-xs
h3.t-white
i.fa.fa-angle-right.t-dk
| Test the desired state
p.t-white Verify your infrastructure matches your expectations.
h3.t-white
i.fa.fa-angle-right.t-dk
| Use simple and expressive code
p.t-white
| Reduce friction by writing tests that are easy to understand by anyone.
h3.t-white
i.fa.fa-angle-right.t-dk
| Test any system anywhere
p.t-white
| Run tests locally or remotely on all major operating systems and configurations.
h3.t-white
i.fa.fa-angle-right.t-dk
| Extensible
p.t-white
| Create custom resources with ease and share them.
/! code
2017-01-13 23:07:38 +00:00
.large-6.medium-6.columns
.code-example.shadow.relative-top.margin-under
code.code-demo
span.code-attribute describe
| file('/etc/myapp.conf')
2017-01-13 23:07:38 +00:00
span.code-attribute do
br/
span.code-attribute.indent it
| { should exist }
2017-01-13 23:07:38 +00:00
br/
span.code-attribute.indent its
| ('mode') { should cmp 0644 }
2017-01-13 23:07:38 +00:00
br/
span.code-attribute end
2017-01-13 23:07:38 +00:00
br/
br/
span.code-attribute describe
2017-01-13 23:07:38 +00:00
| myapp.conf
span.code-attribute do
br/
span.code-attribute.indent its
| ('port') { should cmp 8080 }
2017-01-13 23:07:38 +00:00
br/
span.code-attribute end
br/
br/
span.code-attribute describe
| port(8080)
span.code-attribute do
br/
span.code-attribute.indent it
| { should be_listening }
2017-01-13 23:07:38 +00:00
br/
span.code-attribute end
a.btn.strict-right.t-white.try-demo.mobile-hide Try the Demo