-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.fp
26 lines (24 loc) · 829 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
mod "azure_compliance" {
title = "Azure Compliance"
description = "Run pipelines to detect and correct Azure resources that are non-compliant."
color = "#0089D6"
documentation = file("./README.md")
icon = "/images/mods/turbot/azure-compliance.svg"
categories = ["azure", "compliance", "public cloud", "standard"]
opengraph {
title = "Azure Compliance Mod for Flowpipe"
description = "Run pipelines to detect and correct Azure resources that are non-compliant."
image = "/images/mods/turbot/azure-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-azure" {
version = "^1"
}
}
}