This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
cloudflare = { | |
source = "cloudflare/cloudflare" | |
} | |
} | |
} | |
locals { | |
zones = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
cloudflare = { | |
source = "cloudflare/cloudflare" | |
} | |
} | |
} | |
variable "zone" { | |
description = "Cloudflare zone including zone, zone_id, and account_id" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "tablex.typ": * | |
#let groupedx(data, results-start: none, gutter: auto, column-gutter: auto, row-gutter: auto, fill: none, align: horizon, stroke: black, inset: 5pt) = { | |
let datax = data.map(x => x.map(y => ())) | |
let number-of-columns = data.at(0).len() | |
let number-of-rows = data.len() | |
let skip = () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// todo: key this by the provided label or just use dependency injection | |
#let this-counter = counter("info-box") | |
#let info-box( | |
title: none, | |
sections: none, | |
label: none, | |
caption: none, | |
radius: 3pt, | |
inset: 16pt, |