-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.fp
27 lines (25 loc) · 858 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_tags" {
title = "AWS Tags"
description = "Run pipelines to detect and correct AWS tags which are missing, prohibited or otherwise unexpected."
color = "#FF9900"
documentation = file("./README.md")
icon = "/images/mods/turbot/aws-tags.svg"
categories = ["aws", "public cloud", "standard", "tags"]
database = var.database
opengraph {
title = "AWS Tags Mod for Flowpipe"
description = "Run pipelines to detect and correct AWS tags which are missing, prohibited or otherwise unexpected."
image = "/images/mods/turbot/aws-tags-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"
}
}
}