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
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 config.toml chef-web-docs/_vendor/github.com/inspec/inspec/docs-chef-io/
pushd chef-web-docs && make assets; hugo --gc --minify --buildFuture && popd
serve: chef_web_docs
@ -19,6 +20,9 @@ chef_web_docs:
fi
clean_all:
rm -rf chef-web-docs
clean:
pushd chef-web-docs && make clean_all && popd
lint:

View file

@ -1,6 +1,7 @@
+++
title = "{{ or (replace .Name "_" " ") (replace .Name "-" " ") | title }}"
draft = false
gh_repo = "inspec"
[menu]
[menu.desktop]
@ -9,5 +10,3 @@ draft = false
parent = "inspec"
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 }}"
draft = false
platform = "<platform>"
gh_repo = "inspec"
[menu]
[menu.desktop]
@ -9,5 +10,3 @@ platform = "<platform>"
identifier = "inspec/resources/{{ .Name }}.md {{ or (replace .Name "_" " ") (replace .Name "-" " ") | title }}"
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"
draft = false
gh_repo = "inspec"
[cascade]
product = ["inspec"]
@ -12,8 +14,6 @@ draft = false
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.
{{< note >}}

View file

@ -1,6 +1,7 @@
+++
title = "InSpec CLI"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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.
## archive

View file

@ -1,6 +1,7 @@
+++
title = "InSpec Configuration File"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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.
## Config File Location

View file

@ -1,6 +1,7 @@
+++
title = "Chef InSpec DSL"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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,
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

View file

@ -1,6 +1,7 @@
+++
title = "Resource DSL"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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
available with their respective names and provide easy functionality to
profiles.

View file

@ -1,6 +1,7 @@
+++
title = "Chef InSpec Glossary"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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.
There are two ways to use it:

View file

@ -1,6 +1,7 @@
+++
title = "Chef InSpec Integration with Chef Habitat"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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.*
## What is Chef Habitat

View file

@ -1,6 +1,7 @@
+++
title = "Chef InSpec Inputs"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
weight = 30
+++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/inputs.md)
## What are Inputs?
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"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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
relate to each other.

View file

@ -1,6 +1,7 @@
+++
title = "Install and Uninstall"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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.
## Install Chef InSpec

View file

@ -1,6 +1,7 @@
+++
title = "Chef InSpec Universal Matchers Reference"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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.
The following matchers are available:

View file

@ -1,6 +1,7 @@
+++
title = "Chef InSpec Migration Guide"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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
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"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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
machines and now include support for select AWS and Azure resources.

View file

@ -1,6 +1,7 @@
+++
title = "About kitchen-inspec"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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`.
Add the Chef InSpec verifier to the `.kitchen.yml` file:

View file

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

View file

@ -1,6 +1,7 @@
+++
title = "About Chef InSpec Profiles"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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
organize controls to support dependency management and code reuse. Each profile
is a standalone structure with its own distribution and execution flow.

View file

@ -1,6 +1,7 @@
+++
title = "Chef InSpec Reporters"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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
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"
draft = false
gh_repo = "inspec"
[menu]
[menu.inspec]
@ -10,8 +11,6 @@ draft = false
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.
## OS

View file

@ -1,6 +1,7 @@
+++
title = "aide_conf resource"
draft = false
gh_repo = "inspec"
platform = "linux"
[menu]
@ -10,8 +11,6 @@ platform = "linux"
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.
## Availability

View file

@ -1,6 +1,7 @@
+++
title = "apache resource"
draft = false
gh_repo = "inspec"
platform = "linux"
[menu]
@ -10,8 +11,6 @@ platform = "linux"
parent = "inspec/resources/os"
+++
[\[edit on GitHub\]](https://github.com/inspec/inspec/blob/master/docs-chef-io/content/inspec/resources/apache.md)
{{< 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.

View file

@ -1,6 +1,7 @@
+++
title = "apache_conf resource"
draft = false
gh_repo = "inspec"
platform = "linux"
[menu]
@ -10,8 +11,6 @@ platform = "linux"
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.
## Availability

View file

@ -1,6 +1,7 @@
+++
title = "apt resource"
draft = false
gh_repo = "inspec"
platform = "linux"
[menu]
@ -10,8 +11,6 @@ platform = "linux"
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.
## Availability

View file

@ -1,6 +1,7 @@
+++
title = "audit_policy resource"
draft = false
gh_repo = "inspec"
platform = "linux"
[menu]
@ -10,8 +11,6 @@ platform = "linux"
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`.
## Availability

View file

@ -1,6 +1,7 @@
+++
title = "auditd resource"
draft = false
gh_repo = "inspec"
platform = "linux"
[menu]
@ -10,8 +11,6 @@ platform = "linux"
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.
## Availability

View file

@ -1,6 +1,7 @@
+++
title = "auditd_conf resource"
draft = false
gh_repo = "inspec"
platform = "linux"
[menu]
@ -10,8 +11,6 @@ platform = "linux"
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.
## Availability

View file

@ -1,6 +1,7 @@
+++
title = "aws_alb resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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).
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_albs resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_auto_scaling_group resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_auto_scaling_groups resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_cloudformation_stack resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_cloudtrail_trail resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_cloudtrail_trails resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_cloudwatch_alarm resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
**If more than one Alarm matches, an error will be raised.**

View file

@ -1,6 +1,7 @@
+++
title = "aws_cloudwatch_log_group resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_cloudwatch_log_metric_filter resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_config_delivery_channel resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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
to an S3 Bucket, an SNS or both.

View file

@ -1,6 +1,7 @@
+++
title = "aws_config_recorder resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_db_subnet_groups resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_dynamodb_table resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_ebs_volume resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_ebs_volumes resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_ec2_instances resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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).
## Syntax

View file

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

View file

@ -1,6 +1,7 @@
+++
title = "aws_ecr_image resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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).
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]

View file

@ -1,6 +1,7 @@
+++
title = "aws_ecs_cluster resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_ecs_clusters resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

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

View file

@ -1,6 +1,7 @@
+++
title = "aws_efs_file_systems resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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
some or all AWS EFS file systems. To audit a single EFS file system, use
`aws_efs_file_ststem` (singular).

View file

@ -1,6 +1,7 @@
+++
title = "aws_eks_cluster resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_eks_clusters resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

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

View file

@ -1,6 +1,7 @@
+++
title = "aws_elasticache_cluster_node resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_elasticache_clusters resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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).
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_elbs resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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
of AWS Elastic Load Balancers.

View file

@ -1,6 +1,7 @@
+++
title = "aws_flow_log resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_hosted_zone resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_hosted_zones resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_access_key resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_access_keys resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_account_alias resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_group resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_groups resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_inline_policy resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_password_policy resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_policies resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_policy resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_role resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_roles resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_root_user resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_saml_provider resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_saml_providers resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_user resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_iam_users resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_internet_gateway resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_internet_gateways resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_kms_key resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
AWS Key Management Service (KMS) is a managed service that makes creating and

View file

@ -1,6 +1,7 @@
+++
title = "aws_lambda resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_lambdas resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_launch_configuration resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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
single AWS Launch Configuration.

View file

@ -1,6 +1,7 @@
+++
title = "aws_nat_gateway resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_nat_gateways resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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
AWS NAT gateways owned by the AWS account.

View file

@ -1,6 +1,7 @@
+++
title = "aws_organizations_member resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_rds_cluster resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL,

View file

@ -1,6 +1,7 @@
+++
title = "aws_rds_instance resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
## Syntax

View file

@ -1,6 +1,7 @@
+++
title = "aws_regions resource"
draft = false
gh_repo = "inspec"
platform = "aws"
[menu]
@ -10,8 +11,6 @@ platform = "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.
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