feat: add gen-certs script and update adguard

This commit is contained in:
cătălin 2026-08-11 11:06:03 +02:00
commit abd0e9bb4d
No known key found for this signature in database
3 changed files with 105 additions and 117 deletions

View file

@ -17,7 +17,8 @@ terraform {
provider "adguard" {
host = "dns.fuku"
username = "admin"
scheme = "http"
scheme = "https"
insecure = "true"
timeout = 5
}
@ -111,3 +112,13 @@ resource "adguard_rewrite" "vault" {
domain = "vault.roboces.dev"
answer = "192.168.1.12"
}
resource "adguard_rewrite" "pocketid" {
domain = "auth.roboces.dev"
answer = "192.168.1.12"
}
resource "adguard_rewrite" "dns" {
domain = "dns.fuku"
answer = "192.168.1.12"
}