forked from turbot/steampipe-mod-aws-compliance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.sp
21 lines (19 loc) · 1.13 KB
/
mod.sp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
mod "aws_compliance" {
# Hub metadata
title = "AWS Compliance"
description = "Run individual configuration, compliance and security controls or full compliance benchmarks for CIS, FFIEC, PCI, NIST, HIPAA, RBI CSF, GDPR, SOC 2, Audit Manager Control Tower, FedRAMP, GxP and AWS Foundational Security Best Practices controls across all your AWS accounts using Powerpipe and Steampipe."
color = "#FF9900"
documentation = file("./docs/index.md")
icon = "/images/mods/turbot/aws-compliance.svg"
categories = ["aws", "cis", "compliance", "pci dss", "public cloud", "security"]
opengraph {
title = "Powerpipe Mod for AWS Compliance"
description = "Run individual configuration, compliance and security controls or full compliance benchmarks for CIS, FFIEC, PCI, NIST, HIPAA, RBI CSF, GDPR, SOC 2, Audit Manager Control Tower, FedRAMP, GxP and AWS Foundational Security Best Practices controls across all your AWS accounts using Powerpipe and Steampipe."
image = "/images/mods/turbot/aws-compliance-social-graphic.png"
}
require {
plugin "aws" {
min_version = "0.133.0"
}
}
}