-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.fp
27 lines (25 loc) · 842 Bytes
/
mod.fp
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
mod "aws_compliance" {
title = "AWS Compliance"
description = "Run pipelines to detect and correct AWS resources that are non-compliant."
color = "#FF9900"
documentation = file("./README.md")
database = var.database
icon = "/images/mods/turbot/aws-compliance.svg"
categories = ["aws", "compliance", "public cloud", "standard"]
opengraph {
title = "AWS Compliance Mod for Flowpipe"
description = "Run pipelines to detect and correct AWS resources that are non-compliant."
image = "/images/mods/turbot/aws-compliance-social-graphic.png"
}
require {
flowpipe {
min_version = "1.0.0"
}
mod "github.com/turbot/flowpipe-mod-detect-correct" {
version = "^1"
}
mod "github.com/turbot/flowpipe-mod-aws" {
version = "^1"
}
}
}