packer-builds

Packer Builds for LXC and Libvirt
git clone https://git.in0rdr.ch/packer-builds.git
Log | Files | Refs | Pull requests |Archive | README

restic-lxc.pkr.hcl (880B)


      1 variable "manifest" {
      2   type    = string
      3   default = "manifest.json"
      4 }
      5 
      6 variable "restic_repository" {
      7   type    = string
      8   default = "rclone:pcloud:/Backup/restic-turris"
      9 }
     10 
     11 variable "restic_password" {
     12   type      = string
     13   sensitive = true
     14 }
     15 
     16 source "lxc" "restic-build" {
     17   config_file         = "config/lxc-config"
     18   template_name       = "download"
     19   template_parameters = ["--dist", "Debian", "--release", "Bookworm", "--arch", "armv7l"]
     20 }
     21 
     22 build {
     23   sources = ["source.lxc.restic-build"]
     24 
     25   provisioner "shell" {
     26     script = "scripts/timezone.sh"
     27   }
     28 
     29   provisioner "shell" {
     30     environment_vars = [
     31       "RESTIC_REPOSITORY=${var.restic_repository}",
     32       "RESTIC_PASSWORD=${var.restic_password}"
     33     ]
     34     script = "scripts/restic.sh"
     35   }
     36 }
     37 
     38 packer {
     39   required_plugins {
     40     lxc = {
     41       version = ">= 1.0.2"
     42       source  = "github.com/hashicorp/lxc"
     43     }
     44   }
     45 }