Remove useless mv-conf prep script

This commit is contained in:
Daniel Berteaud 2024-01-31 13:44:32 +01:00
parent 7c16e18a58
commit bd8e441712
3 changed files with 3 additions and 24 deletions

View File

@ -54,11 +54,10 @@ job "diagrams" {
tags = [
"traefik.enable=true",
"traefik.http.routers.diagrams.rule=Host(`draw.example.org`)",
"traefik.http.routers.diagrams.entrypoints=https",
"traefik.http.middlewares.diagrams-csp.headers.contentsecuritypolicy=connect-src 'self' https://*.dropboxapi.com https://api.trello.com https://api.github.com https://raw.githubusercontent.com https://*.googleapis.com https://*.googleusercontent.com https://graph.microsoft.com https://*.1drv.com https://*.sharepoint.com https://gitlab.com https://*.google.com https://fonts.gstatic.com https://fonts.googleapis.com;default-src 'self';font-src * about:;frame-src 'self' https://*.google.com;img-src * data:;media-src * data:;script-src 'self' https://storage.googleapis.com https://apis.google.com https://docs.google.com https://code.jquery.com 'unsafe-inline';style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;",
"traefik.http.middlewares.diagrams-proxy.headers.customrequestheaders.X-Forwarded-Proto=https",
"traefik.http.routers.diagrams.middlewares=security-headers@file,rate-limit-std@file,diagrams-proxy,inflight-std@file,hsts@file,compression@file,diagrams-csp",
"traefik.http.routers.diagrams.rule=Host(`draw.example.org`)",
"traefik.http.middlewares.csp-diagrams.headers.contentsecuritypolicy=connect-src 'self' https://*.dropboxapi.com https://api.trello.com https://api.github.com https://raw.githubusercontent.com https://*.googleapis.com https://*.googleusercontent.com https://graph.microsoft.com https://*.1drv.com https://*.sharepoint.com https://gitlab.com https://*.google.com https://fonts.gstatic.com https://fonts.googleapis.com;default-src 'self';font-src * about:;frame-src 'self' https://*.google.com;img-src * data:;media-src * data:;script-src 'self' https://storage.googleapis.com https://apis.google.com https://docs.google.com https://code.jquery.com 'unsafe-inline';style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;",
"traefik.http.routers.diagrams.middlewares=security-headers@file,rate-limit-std@file,forward-proto@file,inflight-std@file,hsts@file,compression@file,csp-diagrams",
]
}

View File

@ -1,19 +0,0 @@
#!/bin/sh
set -eu
if [ "diagrams" != "diagrams" ]; then
for DIR in vault consul nomad; do
if [ -d output/${DIR} ]; then
for FILE in $(find output/${DIR} -name "*diagrams*.hcl" -type f); do
NEW_FILE=$(echo "${FILE}" | sed -E "s/diagrams/diagrams/g")
mv "${FILE}" "${NEW_FILE}"
done
fi
done
fi

View File

@ -1 +0,0 @@
[[ template "common/mv_conf.sh.tpl" dict "ctx" . "services" (dict "diagrams" .instance) ]]