1
0
Fork 0
mirror of https://github.com/imjasonh/kontain.me synced 2026-07-07 00:32:28 +00:00
kontain.me/prober.tf
Jason Hall dc96e41aa3
put the train back on its rails
Signed-off-by: Jason Hall <jason@chainguard.dev>
2025-02-14 03:52:52 -06:00

26 lines
688 B
HCL

resource "google_service_account" "no-auth" {
account_id = "no-auth"
display_name = "Prober SA with no permissions"
}
/*
module "prober" {
source = "git::https://github.com/chainguard-dev/terraform-infra-common//modules/prober?ref=main"
regions = module.networking.regions
name = "random-prober"
project_id = var.project_id
service_account = google_service_account.no-auth.email
importpath = "github.com/imjasonh/kontain.me/cmd/prober"
working_dir = path.module
period = "600s" // 10 minutes
env = { "REF" : "random.${var.domain}/random:1x1" }
enable_alert = true
notification_channels = tolist(var.notification_channels)
}
*/