replace edit on github links generate link from partial

Signed-off-by: IanMadd <imaddaus@chef.io>
This commit is contained in:
IanMadd 2021-02-10 12:25:35 -08:00
parent f2e6fda102
commit fbd6c8df92
512 changed files with 517 additions and 596 deletions

View file

@ -5,6 +5,7 @@ SHELL=bash
preview_netlify: chef_web_docs preview_netlify: chef_web_docs
cp -R content/* chef-web-docs/_vendor/github.com/inspec/inspec/docs-chef-io/content cp -R content/* chef-web-docs/_vendor/github.com/inspec/inspec/docs-chef-io/content
cp -R static/* chef-web-docs/_vendor/github.com/inspec/inspec/docs-chef-io/static cp -R static/* chef-web-docs/_vendor/github.com/inspec/inspec/docs-chef-io/static
cp -R config.toml chef-web-docs/_vendor/github.com/inspec/inspec/docs-chef-io/
pushd chef-web-docs && make assets; hugo --gc --minify --buildFuture && popd pushd chef-web-docs && make assets; hugo --gc --minify --buildFuture && popd
serve: chef_web_docs serve: chef_web_docs
@ -19,6 +20,9 @@ chef_web_docs:
fi fi
clean_all: clean_all:
rm -rf chef-web-docs
clean:
pushd chef-web-docs && make clean_all && popd pushd chef-web-docs && make clean_all && popd
lint: lint:

View file

@ -1,6 +1,7 @@
+++ +++
title = "{{ or (replace .Name "_" " ") (replace .Name "-" " ") | title }}" title = "{{ or (replace .Name "_" " ") (replace .Name "-" " ") | title }}"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.desktop] [menu.desktop]
@ -9,5 +10,3 @@ draft = false
parent = "inspec" parent = "inspec"
weight = 10 weight = 10
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs/content/inspec/{{ .Name }}.md)

View file

@ -2,6 +2,7 @@
title = "{{ or (replace .Name "_" " ") (replace .Name "-" " ") | title }}" title = "{{ or (replace .Name "_" " ") (replace .Name "-" " ") | title }}"
draft = false draft = false
platform = "<platform>" platform = "<platform>"
gh_repo = "inspec"
[menu] [menu]
[menu.desktop] [menu.desktop]
@ -9,5 +10,3 @@ platform = "<platform>"
identifier = "inspec/resources/{{ .Name }}.md {{ or (replace .Name "_" " ") (replace .Name "-" " ") | title }}" identifier = "inspec/resources/{{ .Name }}.md {{ or (replace .Name "_" " ") (replace .Name "-" " ") | title }}"
parent = "inspec/resources" parent = "inspec/resources"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs/content/inspec/resources/{{ .Name }}.md)

2
docs-chef-io/config.toml Normal file
View file

@ -0,0 +1,2 @@
[params.inspec]
gh_path = "https://github.com/inspec/inspec/tree/master/docs-chef-io/content/"

View file

@ -1,6 +1,8 @@
+++ +++
title = "An Overview of Chef InSpec" title = "An Overview of Chef InSpec"
draft = false draft = false
gh_repo = "inspec"
[cascade] [cascade]
product = ["inspec"] product = ["inspec"]
@ -12,8 +14,6 @@ draft = false
weight = 10 weight = 10
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/_index.md)
Chef InSpec is an open-source framework for testing and auditing your applications and infrastructure. Chef InSpec works by comparing the actual state of your system with the desired state that you express in easy-to-read and easy-to-write Chef InSpec code. Chef InSpec detects violations and displays findings in the form of a report, but puts you in control of remediation. Chef InSpec is an open-source framework for testing and auditing your applications and infrastructure. Chef InSpec works by comparing the actual state of your system with the desired state that you express in easy-to-read and easy-to-write Chef InSpec code. Chef InSpec detects violations and displays findings in the form of a report, but puts you in control of remediation.
{{< note >}} {{< note >}}

View file

@ -1,6 +1,7 @@
+++ +++
title = "InSpec CLI" title = "InSpec CLI"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 10 weight = 10
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/cli.md)
Use the InSpec CLI to run tests and audits against targets using local, SSH, WinRM, or Docker connections. Use the InSpec CLI to run tests and audits against targets using local, SSH, WinRM, or Docker connections.
## archive ## archive

View file

@ -1,6 +1,7 @@
+++ +++
title = "InSpec Configuration File" title = "InSpec Configuration File"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 60 weight = 60
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/config.md)
This documents the Chef InSpec configuration file format introduced in version 3.5 of InSpec and extended in later versions. This documents the Chef InSpec configuration file format introduced in version 3.5 of InSpec and extended in later versions.
## Config File Location ## Config File Location

View file

@ -1,6 +1,7 @@
+++ +++
title = "Chef InSpec DSL" title = "Chef InSpec DSL"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 70 weight = 70
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/dsl_inspec.md)
Chef InSpec is a run-time framework and rule language used to specify compliance, Chef InSpec is a run-time framework and rule language used to specify compliance,
security, and policy requirements. It includes a collection of resources that help security, and policy requirements. It includes a collection of resources that help
you write auditing controls quickly and easily. The syntax used by both open source you write auditing controls quickly and easily. The syntax used by both open source

View file

@ -1,6 +1,7 @@
+++ +++
title = "Resource DSL" title = "Resource DSL"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 90 weight = 90
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/dsl_resource.md)
Chef InSpec provides a mechanism for defining custom resources. These become Chef InSpec provides a mechanism for defining custom resources. These become
available with their respective names and provide easy functionality to available with their respective names and provide easy functionality to
profiles. profiles.

View file

@ -1,6 +1,7 @@
+++ +++
title = "Chef InSpec Glossary" title = "Chef InSpec Glossary"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 50 weight = 50
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/glossary.md)
This document should help you become familiar with some of the terminology used by the Chef InSpec project. This document should help you become familiar with some of the terminology used by the Chef InSpec project.
There are two ways to use it: There are two ways to use it:

View file

@ -1,6 +1,7 @@
+++ +++
title = "Chef InSpec Integration with Chef Habitat" title = "Chef InSpec Integration with Chef Habitat"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 120 weight = 120
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/habitat.md)
Chef InSpec provides an easy method to create an executable Chef Habitat package for a Chef InSpec profile. When run via the Chef Habitat Supervisor, the package will run Chef InSpec with your profile and write out its findings to the supervisor log. This provides the ability to ship your compliance controls alongside your Chef Habitat-packaged application and continuously run InSpec, providing you *Continuous Compliance.* Chef InSpec provides an easy method to create an executable Chef Habitat package for a Chef InSpec profile. When run via the Chef Habitat Supervisor, the package will run Chef InSpec with your profile and write out its findings to the supervisor log. This provides the ability to ship your compliance controls alongside your Chef Habitat-packaged application and continuously run InSpec, providing you *Continuous Compliance.*
## What is Chef Habitat ## What is Chef Habitat

View file

@ -1,6 +1,7 @@
+++ +++
title = "Chef InSpec Inputs" title = "Chef InSpec Inputs"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 30 weight = 30
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/inputs.md)
## What are Inputs? ## What are Inputs?
Inputs are the "knobs" you can use to customize the behavior of Chef InSpec profiles. Inputs are the "knobs" you can use to customize the behavior of Chef InSpec profiles.

View file

@ -1,6 +1,7 @@
+++ +++
title = "Chef InSpec and Friends" title = "Chef InSpec and Friends"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 40 weight = 40
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/inspec_and_friends.md)
This page looks at projects that are similar to Chef InSpec to explain how they This page looks at projects that are similar to Chef InSpec to explain how they
relate to each other. relate to each other.

View file

@ -1,6 +1,7 @@
+++ +++
title = "Install and Uninstall" title = "Install and Uninstall"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 20 weight = 20
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/install.md)
Users can choose between operating systems of MacOS, Windows, and Linux for Chef InSpec. Users can choose between operating systems of MacOS, Windows, and Linux for Chef InSpec.
## Install Chef InSpec ## Install Chef InSpec

View file

@ -1,6 +1,7 @@
+++ +++
title = "Chef InSpec Universal Matchers Reference" title = "Chef InSpec Universal Matchers Reference"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 40 weight = 40
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/matchers.md)
Chef InSpec uses matchers to help compare resource values to expectations. Chef InSpec uses matchers to help compare resource values to expectations.
The following matchers are available: The following matchers are available:

View file

@ -1,6 +1,7 @@
+++ +++
title = "Chef InSpec Migration Guide" title = "Chef InSpec Migration Guide"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 130 weight = 130
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/migration.md)
## How is Chef InSpec different from Serverspec ## How is Chef InSpec different from Serverspec
We've written a complete blog post about that topic: [The Road to InSpec](https://blog.chef.io/2015/11/04/the-road-to-inspec/) We've written a complete blog post about that topic: [The Road to InSpec](https://blog.chef.io/2015/11/04/the-road-to-inspec/)

View file

@ -1,6 +1,7 @@
+++ +++
title = "Using Chef InSpec on Cloud Platforms" title = "Using Chef InSpec on Cloud Platforms"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 30 weight = 30
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/platforms.md)
As of Chef InSpec 2.0, we have expanded our platform support beyond individual As of Chef InSpec 2.0, we have expanded our platform support beyond individual
machines and now include support for select AWS and Azure resources. machines and now include support for select AWS and Azure resources.

View file

@ -1,6 +1,7 @@
+++ +++
title = "About kitchen-inspec" title = "About kitchen-inspec"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 110 weight = 110
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/plugin_kitchen_inspec.md)
Use Chef InSpec as a Kitchen verifier with `kitchen-inspec`. Use Chef InSpec as a Kitchen verifier with `kitchen-inspec`.
Add the Chef InSpec verifier to the `.kitchen.yml` file: Add the Chef InSpec verifier to the `.kitchen.yml` file:

View file

@ -1,6 +1,7 @@
+++ +++
title = "About Chef InSpec and Train Plugins" title = "About Chef InSpec and Train Plugins"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 100 weight = 100
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/plugins.md)
## What are Chef InSpec Plugins? ## What are Chef InSpec Plugins?
Chef InSpec Plugins are optional software components that extend the capabilities Chef InSpec Plugins are optional software components that extend the capabilities

View file

@ -1,6 +1,7 @@
+++ +++
title = "About Chef InSpec Profiles" title = "About Chef InSpec Profiles"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 20 weight = 20
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/profiles.md)
Chef InSpec supports the creation of complex test and compliance profiles, which Chef InSpec supports the creation of complex test and compliance profiles, which
organize controls to support dependency management and code reuse. Each profile organize controls to support dependency management and code reuse. Each profile
is a standalone structure with its own distribution and execution flow. is a standalone structure with its own distribution and execution flow.

View file

@ -1,6 +1,7 @@
+++ +++
title = "Chef InSpec Reporters" title = "Chef InSpec Reporters"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 50 weight = 50
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/reporters.md)
Introduced in Chef InSpec 1.51.6 Introduced in Chef InSpec 1.51.6
A `reporter` is a facility for formatting and delivering the results of a Chef InSpec auditing run. A `reporter` is a facility for formatting and delivering the results of a Chef InSpec auditing run.

View file

@ -1,6 +1,7 @@
+++ +++
title = "InSpec Resources Reference" title = "InSpec Resources Reference"
draft = false draft = false
gh_repo = "inspec"
[menu] [menu]
[menu.inspec] [menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 10 weight = 10
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/_index.md)
The following list of InSpec resources are available. The following list of InSpec resources are available.
## OS ## OS

View file

@ -1,6 +1,7 @@
+++ +++
title = "aide_conf resource" title = "aide_conf resource"
draft = false draft = false
gh_repo = "inspec"
platform = "linux" platform = "linux"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "linux"
parent = "inspec/resources/os" parent = "inspec/resources/os"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aide_conf.md)
Use the `aide_conf` Chef InSpec audit resource to test the rules established for the file integrity tool AIDE. Controlled by the aide.conf file typically at /etc/aide.conf. Use the `aide_conf` Chef InSpec audit resource to test the rules established for the file integrity tool AIDE. Controlled by the aide.conf file typically at /etc/aide.conf.
## Availability ## Availability

View file

@ -1,6 +1,7 @@
+++ +++
title = "apache resource" title = "apache resource"
draft = false draft = false
gh_repo = "inspec"
platform = "linux" platform = "linux"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "linux"
parent = "inspec/resources/os" parent = "inspec/resources/os"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/apache.md)
{{< warning >}} {{< warning >}}
This resource is deprecated and should not be used. It was removed in Chef InSpec 4.0. The documentation below is preserved as a reference. Replacement functionality is available in the [`apache_conf`](/inspec/resources/apache_conf/) resource. This resource is deprecated and should not be used. It was removed in Chef InSpec 4.0. The documentation below is preserved as a reference. Replacement functionality is available in the [`apache_conf`](/inspec/resources/apache_conf/) resource.

View file

@ -1,6 +1,7 @@
+++ +++
title = "apache_conf resource" title = "apache_conf resource"
draft = false draft = false
gh_repo = "inspec"
platform = "linux" platform = "linux"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "linux"
parent = "inspec/resources/os" parent = "inspec/resources/os"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/apache_conf.md)
Use the `apache_conf` Chef InSpec audit resource to test the configuration settings for Apache. This file is typically located under `/etc/apache2` on the Debian and Ubuntu platforms and under `/etc/httpd` on the Fedora, CentOS, RedHat Enterprise Linux, and ArchLinux platforms. The configuration settings may vary significantly from platform to platform. Use the `apache_conf` Chef InSpec audit resource to test the configuration settings for Apache. This file is typically located under `/etc/apache2` on the Debian and Ubuntu platforms and under `/etc/httpd` on the Fedora, CentOS, RedHat Enterprise Linux, and ArchLinux platforms. The configuration settings may vary significantly from platform to platform.
## Availability ## Availability

View file

@ -1,6 +1,7 @@
+++ +++
title = "apt resource" title = "apt resource"
draft = false draft = false
gh_repo = "inspec"
platform = "linux" platform = "linux"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "linux"
parent = "inspec/resources/os" parent = "inspec/resources/os"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/apt.md)
Use the `apt` Chef InSpec audit resource to verify Apt repositories on the Debian and Ubuntu platforms, and also PPA repositories on the Ubuntu platform. Use the `apt` Chef InSpec audit resource to verify Apt repositories on the Debian and Ubuntu platforms, and also PPA repositories on the Ubuntu platform.
## Availability ## Availability

View file

@ -1,6 +1,7 @@
+++ +++
title = "audit_policy resource" title = "audit_policy resource"
draft = false draft = false
gh_repo = "inspec"
platform = "linux" platform = "linux"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "linux"
parent = "inspec/resources/os" parent = "inspec/resources/os"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/audit_policy.md)
Use the `audit_policy` Chef InSpec audit resource to test auditing policies on the Windows platform. An auditing policy is a category of security-related events to be audited. Auditing is disabled by default and may be enabled for categories like account management, logon events, policy changes, process tracking, privilege use, system events, or object access. For each enabled auditing category property, the auditing level may be set to `No Auditing`, `Not Specified`, `Success`, `Success and Failure`, or `Failure`. Use the `audit_policy` Chef InSpec audit resource to test auditing policies on the Windows platform. An auditing policy is a category of security-related events to be audited. Auditing is disabled by default and may be enabled for categories like account management, logon events, policy changes, process tracking, privilege use, system events, or object access. For each enabled auditing category property, the auditing level may be set to `No Auditing`, `Not Specified`, `Success`, `Success and Failure`, or `Failure`.
## Availability ## Availability

View file

@ -1,6 +1,7 @@
+++ +++
title = "auditd resource" title = "auditd resource"
draft = false draft = false
gh_repo = "inspec"
platform = "linux" platform = "linux"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "linux"
parent = "inspec/resources/os" parent = "inspec/resources/os"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/auditd.md)
Use the `auditd` Chef InSpec audit resource to test the rules for logging that exist on the system. The audit.rules file is typically located under /etc/audit/ and contains the list of rules that define what is captured in log files. These rules are output using the auditctl -l command. This resource supports versions of `audit` >= 2.3. Use the `auditd` Chef InSpec audit resource to test the rules for logging that exist on the system. The audit.rules file is typically located under /etc/audit/ and contains the list of rules that define what is captured in log files. These rules are output using the auditctl -l command. This resource supports versions of `audit` >= 2.3.
## Availability ## Availability

View file

@ -1,6 +1,7 @@
+++ +++
title = "auditd_conf resource" title = "auditd_conf resource"
draft = false draft = false
gh_repo = "inspec"
platform = "linux" platform = "linux"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "linux"
parent = "inspec/resources/os" parent = "inspec/resources/os"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/auditd_conf.md)
Use the `auditd_conf` Chef InSpec audit resource to test the configuration settings for the audit daemon. This file is typically located under `/etc/audit/auditd.conf'` on Unix and Linux platforms. Use the `auditd_conf` Chef InSpec audit resource to test the configuration settings for the audit daemon. This file is typically located under `/etc/audit/auditd.conf'` on Unix and Linux platforms.
## Availability ## Availability

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_alb resource" title = "aws_alb resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_alb.md)
Use the `aws_alb` InSpec audit resource to test properties of a single AWS Application Load Balancer (ALB). Use the `aws_alb` InSpec audit resource to test properties of a single AWS Application Load Balancer (ALB).
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_albs resource" title = "aws_albs resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_albs.md)
Use the `aws_albs` InSpec audit resource to test the configuration of a collection of Application Load Balancers. Use the `aws_albs` InSpec audit resource to test the configuration of a collection of Application Load Balancers.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_auto_scaling_group resource" title = "aws_auto_scaling_group resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_auto_scaling_group.md)
Use the `aws_auto_scaling_group` InSpec audit resource to test properties of a single AWS Auto Scaling group. Use the `aws_auto_scaling_group` InSpec audit resource to test properties of a single AWS Auto Scaling group.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_auto_scaling_groups resource" title = "aws_auto_scaling_groups resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_auto_scaling_groups.md)
Use the `aws_auto_scaling_groups` InSpec audit resource to test the properties of a collection of AWS Auto Scaling Groups. Use the `aws_auto_scaling_groups` InSpec audit resource to test the properties of a collection of AWS Auto Scaling Groups.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_cloudformation_stack resource" title = "aws_cloudformation_stack resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_cloudformation_stack.md)
Use the `aws_cloudformation_stack` InSpec audit resource to test properties of a single AWS Cloud Formation Stack. Use the `aws_cloudformation_stack` InSpec audit resource to test properties of a single AWS Cloud Formation Stack.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_cloudtrail_trail resource" title = "aws_cloudtrail_trail resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_cloudtrail_trail.md)
Use the `aws_cloudtrail_trail` InSpec audit resource to test properties of a single AWS CloudTrail. Use the `aws_cloudtrail_trail` InSpec audit resource to test properties of a single AWS CloudTrail.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_cloudtrail_trails resource" title = "aws_cloudtrail_trails resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_cloudtrail_trails.md)
Use the `aws_cloudtrail_trails` InSpec audit resource to test properties of a collection of AWS CloudTrail Trails. Use the `aws_cloudtrail_trails` InSpec audit resource to test properties of a collection of AWS CloudTrail Trails.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_cloudwatch_alarm resource" title = "aws_cloudwatch_alarm resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_cloudwatch_alarm.md)
Use the `aws_cloudwatch_alarm` InSpec audit resource to test properties of a single CloudWatch Alarm. Use the `aws_cloudwatch_alarm` InSpec audit resource to test properties of a single CloudWatch Alarm.
**If more than one Alarm matches, an error will be raised.** **If more than one Alarm matches, an error will be raised.**

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_cloudwatch_log_group resource" title = "aws_cloudwatch_log_group resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_cloudwatch_log_group.md)
Use the `aws_cloudwatch_log_group` InSpec audit resource to test properties of a single AWS CloudWatch Log Group. Use the `aws_cloudwatch_log_group` InSpec audit resource to test properties of a single AWS CloudWatch Log Group.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_cloudwatch_log_metric_filter resource" title = "aws_cloudwatch_log_metric_filter resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_cloudwatch_log_metric_filter.md)
Use the `aws_cloudwatch_log_metric_filter` InSpec audit resource to search for and test properties of individual AWS Cloudwatch Log Metric Filters. Use the `aws_cloudwatch_log_metric_filter` InSpec audit resource to search for and test properties of individual AWS Cloudwatch Log Metric Filters.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_config_delivery_channel resource" title = "aws_config_delivery_channel resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_config_delivery_channel.md)
The AWS Config service can monitor and record changes to your AWS resource configurations. A Delivery Channel can record the changes The AWS Config service can monitor and record changes to your AWS resource configurations. A Delivery Channel can record the changes
to an S3 Bucket, an SNS or both. to an S3 Bucket, an SNS or both.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_config_recorder resource" title = "aws_config_recorder resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_config_recorder.md)
Use the `aws_config_recorder` InSpec audit resource to test properties of your AWS Config Service. Use the `aws_config_recorder` InSpec audit resource to test properties of your AWS Config Service.
The AWS Config service can monitor and record changes to your AWS resource configurations. The Aws Config Recorder is used to detect changes in resource configurations and capture these changes as configuration items. The AWS Config service can monitor and record changes to your AWS resource configurations. The Aws Config Recorder is used to detect changes in resource configurations and capture these changes as configuration items.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_db_subnet_group resource" title = "aws_db_subnet_group resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_db_subnet_group.md)
Use the `aws_db_subnet_group` InSpec audit resource to test properties of a db subnet group. Use the `aws_db_subnet_group` InSpec audit resource to test properties of a db subnet group.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_db_subnet_groups resource" title = "aws_db_subnet_groups resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_db_subnet_groups.md)
Use the `aws_db_subnet_groups` InSpec audit resource to test properties of a collection of AWS RDS subnet groups. Use the `aws_db_subnet_groups` InSpec audit resource to test properties of a collection of AWS RDS subnet groups.
RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_dhcp_options resource" title = "aws_dhcp_options resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_dhcp_options.md)
Use the `aws_dhcp_options` InSpec audit resource to test properties of a single AWS DHCP Options. Use the `aws_dhcp_options` InSpec audit resource to test properties of a single AWS DHCP Options.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_dynamodb_table resource" title = "aws_dynamodb_table resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_dynamodb_table.md)
Use the `aws_dynamodb_table` InSpec audit resource to test properties of a single DynamoDb Table. Use the `aws_dynamodb_table` InSpec audit resource to test properties of a single DynamoDb Table.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ebs_volume resource" title = "aws_ebs_volume resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ebs_volume.md)
Use the `aws_ebs_volume` InSpec audit resource to test properties of a single AWS EBS volume. Use the `aws_ebs_volume` InSpec audit resource to test properties of a single AWS EBS volume.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ebs_volumes resource" title = "aws_ebs_volumes resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ebs_volumes.md)
Use the `aws_ebs_volumes` InSpec audit resource to test properties of a collection of AWS EBS volumes. Use the `aws_ebs_volumes` InSpec audit resource to test properties of a collection of AWS EBS volumes.
EBS volumes are persistent block storage volumes for use with Amazon EC2 instances in the AWS Cloud. EBS volumes are persistent block storage volumes for use with Amazon EC2 instances in the AWS Cloud.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ec2_instance resource" title = "aws_ec2_instance resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ec2_instance.md)
Use the `aws_ec2_instance` InSpec audit resource to test properties of a single AWS EC2 instance. Use the `aws_ec2_instance` InSpec audit resource to test properties of a single AWS EC2 instance.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ec2_instances resource" title = "aws_ec2_instances resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ec2_instances.md)
Use the `aws_ec2_instances` InSpec audit resource to test properties of some or all AWS EC2 instances. To audit a single EC2 instance, use `aws_ec2_instance` (singular). Use the `aws_ec2_instances` InSpec audit resource to test properties of some or all AWS EC2 instances. To audit a single EC2 instance, use `aws_ec2_instance` (singular).
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ecr resource" title = "aws_ecr resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ecr_image resource" title = "aws_ecr_image resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ecr_image.md)
Use the `aws_ecr_image` InSpec audit resource to test the properties of a single image in an AWS Elastic Container Registry (ECR) repository. Use the `aws_ecr_image` InSpec audit resource to test the properties of a single image in an AWS Elastic Container Registry (ECR) repository.
This resource is available in InSpec AWS resource pack version **[1.11.0](https://github.com/inspec/inspec-aws/releases/tag/v1.11.0)** onwards. This resource is available in InSpec AWS resource pack version **[1.11.0](https://github.com/inspec/inspec-aws/releases/tag/v1.11.0)** onwards.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ecr_images resource" title = "aws_ecr_images resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ecr_images.md)
Use the `aws_ecr_images` InSpec audit resource to test the properties of all images in an AWS Elastic Container Registry (ECR) repository. Use the `aws_ecr_images` InSpec audit resource to test the properties of all images in an AWS Elastic Container Registry (ECR) repository.
This resource is available in InSpec AWS resource pack version **[1.11.0](https://github.com/inspec/inspec-aws/releases/tag/v1.11.0)** onwards. This resource is available in InSpec AWS resource pack version **[1.11.0](https://github.com/inspec/inspec-aws/releases/tag/v1.11.0)** onwards.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ecr_repositories resource" title = "aws_ecr_repositories resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ecr_repositories.md)
Use the `aws_ecr_repositories` InSpec audit resource to test the properties of all repositories in an AWS Elastic Container Registry (ECR). Use the `aws_ecr_repositories` InSpec audit resource to test the properties of all repositories in an AWS Elastic Container Registry (ECR).
This resource is available in InSpec AWS resource pack version **[1.11.0](https://github.com/inspec/inspec-aws/releases/tag/v1.11.0)** onwards. This resource is available in InSpec AWS resource pack version **[1.11.0](https://github.com/inspec/inspec-aws/releases/tag/v1.11.0)** onwards.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ecr_repository resource" title = "aws_ecr_repository resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ecs_cluster resource" title = "aws_ecs_cluster resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ecs_cluster.md)
Use the `aws_ecs_cluster` InSpec audit resource to test properties of a single AWS ECS Cluster. Use the `aws_ecs_cluster` InSpec audit resource to test properties of a single AWS ECS Cluster.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_ecs_clusters resource" title = "aws_ecs_clusters resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_ecs_clusters.md)
Use the `aws_ecs_clusters` InSpec audit resource to test properties of some or all AWS ECS Clusters. Use the `aws_ecs_clusters` InSpec audit resource to test properties of some or all AWS ECS Clusters.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_efs_file_system resource" title = "aws_efs_file_system resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_efs_file_systems resource" title = "aws_efs_file_systems resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_efs_file_systems.md)
Use the `aws_efs_file_systems` InSpec audit resource to test the properties of Use the `aws_efs_file_systems` InSpec audit resource to test the properties of
some or all AWS EFS file systems. To audit a single EFS file system, use some or all AWS EFS file systems. To audit a single EFS file system, use
`aws_efs_file_ststem` (singular). `aws_efs_file_ststem` (singular).

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_eks_cluster resource" title = "aws_eks_cluster resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_eks_cluster.md)
Use the `aws_eks_cluster` InSpec audit resource to test properties of a single AWS Elastic Container Service for Kubernetes. Use the `aws_eks_cluster` InSpec audit resource to test properties of a single AWS Elastic Container Service for Kubernetes.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_eks_clusters resource" title = "aws_eks_clusters resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_eks_clusters.md)
Use the `aws_eks_clusters` resource to test the configuration of a collection of AWS Elastic Container Service for Kubernetes. Use the `aws_eks_clusters` resource to test the configuration of a collection of AWS Elastic Container Service for Kubernetes.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_elasticache_cluster resource" title = "aws_elasticache_cluster resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_elasticache_cluster_node resource" title = "aws_elasticache_cluster_node resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_elasticache_cluster_node.md)
Use the `aws_elasticache_cluster_node` InSpec audit resource to test the properties of a single AWS ElastiCache cluster node. Use the `aws_elasticache_cluster_node` InSpec audit resource to test the properties of a single AWS ElastiCache cluster node.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_elasticache_clusters resource" title = "aws_elasticache_clusters resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_elasticache_clusters.md)
Use the `aws_elasticache_clusters` InSpec audit resource to test the properties Use the `aws_elasticache_clusters` InSpec audit resource to test the properties
of all AWS ElastiCache clusters. To audit a single ElastiCache cluster, use `aws_elasticache_cluster` (singular). of all AWS ElastiCache clusters. To audit a single ElastiCache cluster, use `aws_elasticache_cluster` (singular).

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_elb resource" title = "aws_elb resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_elb.md)
Use the `aws_elb` InSpec audit resource to test properties of a single AWS Elastic Load Balancer (ELB). Use the `aws_elb` InSpec audit resource to test properties of a single AWS Elastic Load Balancer (ELB).
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_elbs resource" title = "aws_elbs resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_elbs.md)
Use the `aws_elbs` InSpec audit resource to test the configuration of a collection Use the `aws_elbs` InSpec audit resource to test the configuration of a collection
of AWS Elastic Load Balancers. of AWS Elastic Load Balancers.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_flow_log resource" title = "aws_flow_log resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_flow_log.md)
Use the `aws_flow_log` InSpec audit resource to test properties of a single Flow Log. Use the `aws_flow_log` InSpec audit resource to test properties of a single Flow Log.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_hosted_zone resource" title = "aws_hosted_zone resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_hosted_zone.md)
Use the `aws_hosted_zone` resource to test a specific hosted zone configuration. Use the `aws_hosted_zone` resource to test a specific hosted zone configuration.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_hosted_zones resource" title = "aws_hosted_zones resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_hosted_zones.md)
Use the `aws_hosted_zones` resource to test the hosted zones configuration. Use the `aws_hosted_zones` resource to test the hosted zones configuration.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_access_key resource" title = "aws_iam_access_key resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_access_key.md)
Use the `aws_iam_access_key` InSpec audit resource to test properties of a single AWS IAM Access Key. Use the `aws_iam_access_key` InSpec audit resource to test properties of a single AWS IAM Access Key.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_access_keys resource" title = "aws_iam_access_keys resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_access_keys.md)
Use the `aws_iam_access_keys` InSpec audit resource to test properties of some or all AWS IAM Access Keys. Use the `aws_iam_access_keys` InSpec audit resource to test properties of some or all AWS IAM Access Keys.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_account_alias resource" title = "aws_iam_account_alias resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_account_alias.md)
Use the `aws_iam_account_alias` InSpec audit resource to test properties of the AWS IAM account alias. Use the `aws_iam_account_alias` InSpec audit resource to test properties of the AWS IAM account alias.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_group resource" title = "aws_iam_group resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_group.md)
Use the `aws_iam_group` InSpec audit resource to test properties of a single IAM group. Use the `aws_iam_group` InSpec audit resource to test properties of a single IAM group.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_groups resource" title = "aws_iam_groups resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_groups.md)
Use the `aws_iam_groups` InSpec audit resource to test properties of a collection of IAM groups. Use the `aws_iam_groups` InSpec audit resource to test properties of a collection of IAM groups.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_inline_policy resource" title = "aws_iam_inline_policy resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_inline_policy.md)
Use the `aws_iam_inline_policy` InSpec audit resource to test properties of a single inline AWS IAM Policy embedded with IAM User, IAM Group or IAM Role. For managed policies, use the `aws_iam_policy` resource. Use the `aws_iam_inline_policy` InSpec audit resource to test properties of a single inline AWS IAM Policy embedded with IAM User, IAM Group or IAM Role. For managed policies, use the `aws_iam_policy` resource.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_password_policy resource" title = "aws_iam_password_policy resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_password_policy.md)
Use the `aws_iam_password_policy` InSpec audit resource to test properties of an AWS IAM Password Policy. Use the `aws_iam_password_policy` InSpec audit resource to test properties of an AWS IAM Password Policy.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_policies resource" title = "aws_iam_policies resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_policies.md)
Use the `aws_iam_policies` InSpec audit resource to test properties of a collection of AWS IAM Policies. Use the `aws_iam_policies` InSpec audit resource to test properties of a collection of AWS IAM Policies.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_policy resource" title = "aws_iam_policy resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_policy.md)
Use the `aws_iam_policy` InSpec audit resource to test properties of a single managed AWS IAM Policy. Use the `aws_iam_policy` InSpec audit resource to test properties of a single managed AWS IAM Policy.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_role resource" title = "aws_iam_role resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_role.md)
Use the `aws_iam_role` InSpec audit resource to test properties of an AWS IAM Role. Use the `aws_iam_role` InSpec audit resource to test properties of an AWS IAM Role.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_roles resource" title = "aws_iam_roles resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_roles.md)
Use the `aws_iam_roles` InSpec audit resource to test properties of a collection of AWS IAM Roles. Use the `aws_iam_roles` InSpec audit resource to test properties of a collection of AWS IAM Roles.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_root_user resource" title = "aws_iam_root_user resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_root_user.md)
Use the `aws_iam_root_user` InSpec audit resource to test properties of an AWS IAM Root User. Use the `aws_iam_root_user` InSpec audit resource to test properties of an AWS IAM Root User.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_saml_provider resource" title = "aws_iam_saml_provider resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_saml_provider.md)
Use the `aws_iam_saml_provider` InSpec audit resource to test properties of an AWS IAM SAML Provider. Use the `aws_iam_saml_provider` InSpec audit resource to test properties of an AWS IAM SAML Provider.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_saml_providers resource" title = "aws_iam_saml_providers resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_saml_providers.md)
Use the `aws_iam_saml_providers` InSpec audit resource to test properties of some or all AWS IAM SAML Providers. Use the `aws_iam_saml_providers` InSpec audit resource to test properties of some or all AWS IAM SAML Providers.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_user resource" title = "aws_iam_user resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_user.md)
Use the `aws_iam_user` InSpec audit resource to test properties of a single AWS IAM User. Use the `aws_iam_user` InSpec audit resource to test properties of a single AWS IAM User.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_iam_users resource" title = "aws_iam_users resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_iam_users.md)
Use the `aws_iam_users` InSpec audit resource to test properties of some or all AWS IAM Users. Use the `aws_iam_users` InSpec audit resource to test properties of some or all AWS IAM Users.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_internet_gateway resource" title = "aws_internet_gateway resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_internet_gateway.md)
Use the `aws_internet_gateway` InSpec audit resource to test the properties of a single AWS internet gateway. Use the `aws_internet_gateway` InSpec audit resource to test the properties of a single AWS internet gateway.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_internet_gateways resource" title = "aws_internet_gateways resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_internet_gateways.md)
Use the `aws_internet_gateways` InSpec audit resource to test the properties of all AWS internet gateways owned by the AWS account. Use the `aws_internet_gateways` InSpec audit resource to test the properties of all AWS internet gateways owned by the AWS account.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_kms_key resource" title = "aws_kms_key resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_kms_key.md)
Use the `aws_kms_key` InSpec audit resource to test properties of a single AWS KMS Key. Use the `aws_kms_key` InSpec audit resource to test properties of a single AWS KMS Key.
AWS Key Management Service (AWS KMS) is a managed service that makes it easy for you to create and control the encryption keys used to encrypt your data. AWS KMS lets you create master keys that can never be exported from the service and which can be used to encrypt and decrypt data based on policies you define. AWS Key Management Service (AWS KMS) is a managed service that makes it easy for you to create and control the encryption keys used to encrypt your data. AWS KMS lets you create master keys that can never be exported from the service and which can be used to encrypt and decrypt data based on policies you define.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_kms_keys resource" title = "aws_kms_keys resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_kms_keys.md)
Use the `aws_kms_keys` InSpec audit resource to test properties of some or all AWS KMS Keys. Use the `aws_kms_keys` InSpec audit resource to test properties of some or all AWS KMS Keys.
AWS Key Management Service (KMS) is a managed service that makes creating and AWS Key Management Service (KMS) is a managed service that makes creating and

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_lambda resource" title = "aws_lambda resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_lambda.md)
Use the `aws_lambda` resource to test a specific lambda. Use the `aws_lambda` resource to test a specific lambda.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_lambdas resource" title = "aws_lambdas resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_lambdas.md)
Use the `aws_lambdas` resource to test the collection of lambdas deployed into an account. Use the `aws_lambdas` resource to test the collection of lambdas deployed into an account.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_launch_configuration resource" title = "aws_launch_configuration resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_launch_configuration.md)
Use the `aws_launch_configuration` InSpec audit resource to test properties of a Use the `aws_launch_configuration` InSpec audit resource to test properties of a
single AWS Launch Configuration. single AWS Launch Configuration.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_nat_gateway resource" title = "aws_nat_gateway resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_nat_gateway.md)
Use the `aws_nat_gateway` InSpec audit resource to test the properties of a single AWS NAT gateway. Use the `aws_nat_gateway` InSpec audit resource to test the properties of a single AWS NAT gateway.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_nat_gateways resource" title = "aws_nat_gateways resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_nat_gateways.md)
Use the `aws_nat_gateways` InSpec audit resource to test the properties of all Use the `aws_nat_gateways` InSpec audit resource to test the properties of all
AWS NAT gateways owned by the AWS account. AWS NAT gateways owned by the AWS account.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_organizations_member resource" title = "aws_organizations_member resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_organizations_member.md)
Use the `aws_organizations_member` InSpec audit resource to test the current AWS Account being used within an organization. Use the `aws_organizations_member` InSpec audit resource to test the current AWS Account being used within an organization.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_rds_cluster resource" title = "aws_rds_cluster resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_rds_cluster.md)
Use the `aws_rds_cluster` InSpec audit resource to test detailed properties of an individual RDS cluster. Use the `aws_rds_cluster` InSpec audit resource to test detailed properties of an individual RDS cluster.
RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_rds_clusters resource" title = "aws_rds_clusters resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_rds_clusters.md)
Use the `aws_rds_clusters` InSpec audit resource to test properties of a collection of AWS RDS clusters. Use the `aws_rds_clusters` InSpec audit resource to test properties of a collection of AWS RDS clusters.
RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL,

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_rds_instance resource" title = "aws_rds_instance resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_rds_instance.md)
Use the `aws_rds_instance` InSpec audit resource to test detailed properties of an individual RDS instance. Use the `aws_rds_instance` InSpec audit resource to test detailed properties of an individual RDS instance.
RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_rds_instances resource" title = "aws_rds_instances resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_rds_instances.md)
Use the `aws_rds_instances` InSpec audit resource to test properties of a collection of AWS RDS instances. Use the `aws_rds_instances` InSpec audit resource to test properties of a collection of AWS RDS instances.
RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server.

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_region resource" title = "aws_region resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_region.md)
Use the `aws_region` InSpec audit resource to test properties of a single AWS region. Use the `aws_region` InSpec audit resource to test properties of a single AWS region.
## Syntax ## Syntax

View file

@ -1,6 +1,7 @@
+++ +++
title = "aws_regions resource" title = "aws_regions resource"
draft = false draft = false
gh_repo = "inspec"
platform = "aws" platform = "aws"
[menu] [menu]
@ -10,8 +11,6 @@ platform = "aws"
parent = "inspec/resources/aws" parent = "inspec/resources/aws"
+++ +++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/aws_regions.md)
Use the `aws_regions` InSpec audit resource to test properties of some or all AWS regions in bulk. Use the `aws_regions` InSpec audit resource to test properties of some or all AWS regions in bulk.
Note that this resource lists all AWS regions that are currently available to the caller. Note that this resource lists all AWS regions that are currently available to the caller.

Some files were not shown because too many files have changed in this diff Show more