Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed May 3, 2024
1 parent c7358e3 commit 09305b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion defaults/main/0_hardcoded.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ HAPROXY_HC:
user_geoip: 'haproxy-geoip'
service_geoip_lookup: 'haproxy-geoip-lookup'
service_geoip_update: 'haproxy-geoip-update'
geoip_update_timer: 'Mon *-*-* 01:00:00'
geoip_update_timer: 'Mon *-*-* 01:00:00'
geoip_lookup_filters:
ipinfo:
country: 'country'
Expand Down
4 changes: 3 additions & 1 deletion defaults/main/1_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ defaults_haproxy:
'stats timeout': '30s'
ca-base: '/etc/ssl/certs'
crt-base: '/etc/ssl/private'
ssl-default-bind-ciphers: 'ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384'
ssl-default-bind-ciphers: 'ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384\
:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:\
DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384'
ssl-default-bind-ciphersuites: 'TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256'
ssl-default-bind-options: 'ssl-min-ver TLSv1.2 no-tls-tickets'

Expand Down
1 change: 0 additions & 1 deletion filter_plugins/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,3 @@ def is_dict(data) -> bool:
@staticmethod
def safe_key(key: str) -> str:
return regex_replace('[^0-9a-zA-Z_]+', '', key.replace(' ', '_'))

0 comments on commit 09305b1

Please sign in to comment.