mirror of
https://github.com/imjasonh/kontain.me
synced 2026-07-07 00:32:28 +00:00
26 lines
688 B
HCL
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)
|
|
}
|
|
*/
|