-
Notifications
You must be signed in to change notification settings - Fork 6
/
mod.pp
21 lines (19 loc) · 1001 Bytes
/
mod.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 Powerpipe and Steampipe."
color = "#FF9900"
documentation = file("./docs/index.md")
icon = "/images/mods/turbot/aws-perimeter.svg"
categories = ["aws", "perimeter", "public cloud", "security"]
opengraph {
title = "Powerpipe 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 Powerpipe and Steampipe."
image = "/images/mods/turbot/aws-perimeter-social-graphic.png"
}
require {
plugin "aws" {
min_version = "0.70.0"
}
}
}