35 lines
835 B
HCL
35 lines
835 B
HCL
cloudflare_api_token = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" # Placeholder (format-valid)
|
|
cloudflare_account_id = "00000000000000000000000000000000" # Placeholder (format-valid)
|
|
cloudflare_account_name = ""
|
|
|
|
# Exercise empty-list safety
|
|
trusted_admin_ips = []
|
|
blocked_countries = []
|
|
|
|
enable_managed_waf = true
|
|
enable_bot_management = true
|
|
|
|
# Mark at least one zone as non-free so plan includes managed WAF + bot mgmt resources.
|
|
domains = {
|
|
"offsec.global" = {
|
|
plan = "free"
|
|
jump_start = false
|
|
}
|
|
"offsecglobal.com" = {
|
|
plan = "free"
|
|
jump_start = false
|
|
}
|
|
"offsecagent.com" = {
|
|
plan = "free"
|
|
jump_start = false
|
|
}
|
|
"offsecshield.com" = {
|
|
plan = "free"
|
|
jump_start = false
|
|
}
|
|
"vaultmesh.org" = {
|
|
plan = "pro"
|
|
jump_start = false
|
|
}
|
|
}
|