From f25e7c302698a7d0bb4df5c62578910924b05ea7 Mon Sep 17 00:00:00 2001 From: Saibotk Date: Sat, 14 Oct 2023 00:21:16 +0200 Subject: [PATCH] fix: Disable ansible lint for some parts --- roles/static_websites/defaults/main.yml | 2 +- roles/traefik/defaults/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/static_websites/defaults/main.yml b/roles/static_websites/defaults/main.yml index 3e94fbf..d2ed94a 100644 --- a/roles/static_websites/defaults/main.yml +++ b/roles/static_websites/defaults/main.yml @@ -39,4 +39,4 @@ static_websites_default_traefik_certresolver: letsencrypt_http # tmpfs: - List tmpfs definitions like the example below that should be added to the container (optional) # "/tmp/nginx-cache": 1M # See the README for an example -static_websites: {} +static_websites: {} # noqa var-naming[no-role-prefix] diff --git a/roles/traefik/defaults/main.yml b/roles/traefik/defaults/main.yml index aeeb1ce..f8a7c91 100644 --- a/roles/traefik/defaults/main.yml +++ b/roles/traefik/defaults/main.yml @@ -41,7 +41,7 @@ traefik_letsencrypt_email: no-reply@example.com # The proxy network name and the bridge name (you usually do not touch these) # ! Note these are used globally, as every container that wants to use traefik, # ! has to be reachable for traefik and all containers, routed with traefik, are connected to the proxy network. -proxy_network: proxy +proxy_network: proxy # noqa var-naming[no-role-prefix] traefik_docker_bridge_name: docker-proxy # Traefik IPv6 settings @@ -76,7 +76,7 @@ traefik_dynamic_conf: options: default: minVersion: "VersionTLS12" - sniStrict: true # Can be disabled for local testing, which will lead to traefik serving it's default certificate if none can be found + sniStrict: true # Can be disabled for local testing, which will lead to traefik serving it's default certificate if none can be found cipherSuites: - TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 - TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384