Moving all configurable stuff to a separate folder.

main
Thomas Hintz 4 days ago
parent 5ad6f158b4
commit 1424d3f46f

9
.gitignore vendored

@ -8,17 +8,16 @@ flatcar/flatcar_production_qemu_image.img.fresh
ignition.json ignition.json
production.tfvars
terraform.tfstate terraform.tfstate
terraform.tfstate.backup terraform.tfstate.backup
app app
apps.config config/apps.config
config/restic-env
restic-env config/restic-password
restic-password config/production.tfvars
# generated files # generated files
all-apps/lb/Caddyfile all-apps/lb/Caddyfile

@ -1,6 +1,6 @@
TERRAFORM_ENV := production TERRAFORM_ENV := production
config_dir := ./ config_dir := ./config/
apps_config := $(config_dir)apps.config apps_config := $(config_dir)apps.config
# .dirstamp plus && $@ is like make magic to get this rule # .dirstamp plus && $@ is like make magic to get this rule

@ -88,10 +88,10 @@ storage:
files: files:
- path: /restic-password - path: /restic-password
contents: contents:
local: restic-password local: config/restic-password
- path: /restic-env - path: /restic-env
contents: contents:
local: restic-env local: config/restic-env
### docker-compose sysext ### docker-compose sysext
### https://flatcar.github.io/sysext-bakery/docker_compose/ ### https://flatcar.github.io/sysext-bakery/docker_compose/
- path: /opt/extensions/docker-compose/docker-compose-2.34.0-x86-64.raw - path: /opt/extensions/docker-compose/docker-compose-2.34.0-x86-64.raw

Loading…
Cancel
Save