From c63b8d37d752732dd73c91a8ecb778a582d87d8b Mon Sep 17 00:00:00 2001 From: Aleksandar Spasojevic Date: Sun, 5 Apr 2026 18:49:06 +0200 Subject: [PATCH] [Feature] Version v0.0.1 --- README.md | 2 +- config.example.yml | 2 +- tests/e2e/conftest.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f3fc8ae..7065217 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ tokens: token: "app-team-secret" zones: - name: "example.com" - subdomain_filter: "^app\\." + subdomain_filter: '^app\.' allowed_record_types: ["A", "AAAA", "CNAME"] allowed_operations: ["list", "get", "add", "update", "delete"] diff --git a/config.example.yml b/config.example.yml index 5d6ca9c..7a4de42 100644 --- a/config.example.yml +++ b/config.example.yml @@ -19,7 +19,7 @@ tokens: token: "app-team-secret" zones: - name: "example.com" - subdomain_filter: "^app\\." + subdomain_filter: '^app\.' allowed_record_types: ["A", "AAAA", "CNAME"] allowed_operations: ["list", "get", "add", "update", "delete"] diff --git a/tests/e2e/conftest.py b/tests/e2e/conftest.py index 6fc6c8f..ed99aed 100644 --- a/tests/e2e/conftest.py +++ b/tests/e2e/conftest.py @@ -100,7 +100,7 @@ def _build_config_yaml(admin_token: str) -> str: token: "{TOKENS['subdomain_filtered']}" zones: - name: "{ZONE_ALLOWED}" - subdomain_filter: "^app\\." + subdomain_filter: '^app\\.' - name: "readonly" token: "{TOKENS['readonly']}"