forked from turbot/steampipe-mod-aws-perimeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.sp
30 lines (27 loc) · 1.14 KB
/
mod.sp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Benchmarks and controls for specific services should override the "service" tag
locals {
aws_perimeter_common_tags = {
category = "Perimeter"
plugin = "aws"
service = "AWS"
}
}
mod "aws_perimeter" {
# hub metadata
title = "AWS Perimeter"
description = "Run security controls across all your AWS accounts to look for resources that are publicly accessible, shared with untrusted accounts, have insecure network configurations, and more across all your AWS accounts using Steampipe."
color = "#FF9900"
documentation = file("./docs/index.md")
icon = "/images/mods/turbot/aws-perimeter.svg"
categories = ["aws", "perimeter", "public cloud", "security"]
opengraph {
title = "Steampipe Mod for AWS Perimeter"
description = "Run security controls across all your AWS accounts to look for resources that are publicly accessible, shared with untrusted accounts, have insecure network configurations, and more across all your AWS accounts using Steampipe."
image = "/images/mods/turbot/aws-perimeter-social-graphic.png"
}
requires {
plugin "aws" {
version = "0.65.0"
}
}
}