diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2025-03-30 20:02:09 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2025-03-30 20:02:09 +0200 |
commit | 871f158748898cdd69b7c4df2783f0c31370d7dc (patch) | |
tree | 43a123d5574d955f8f27875a1c09aa730953b873 /terraform/lhn2pi-zigbee2mqtt | |
parent | 177895ce74e47bc9327020a73b39b080a872315a (diff) | |
download | infra-871f158748898cdd69b7c4df2783f0c31370d7dc.tar.gz infra-871f158748898cdd69b7c4df2783f0c31370d7dc.tar.bz2 infra-871f158748898cdd69b7c4df2783f0c31370d7dc.tar.xz infra-871f158748898cdd69b7c4df2783f0c31370d7dc.zip |
garasjepi
Diffstat (limited to 'terraform/lhn2pi-zigbee2mqtt')
-rw-r--r-- | terraform/lhn2pi-zigbee2mqtt/README.md | 15 | ||||
-rw-r--r-- | terraform/lhn2pi-zigbee2mqtt/main.tf | 15 |
2 files changed, 2 insertions, 28 deletions
diff --git a/terraform/lhn2pi-zigbee2mqtt/README.md b/terraform/lhn2pi-zigbee2mqtt/README.md deleted file mode 100644 index 2e6209c..0000000 --- a/terraform/lhn2pi-zigbee2mqtt/README.md +++ /dev/null @@ -1,15 +0,0 @@ -This is not a docker container as the rest, but using podman as lhn2pi runs - -https://www.zigbee2mqtt.io/guide/installation/02_docker.html#rootless-container - -podman run \ - --name=zigbee2mqtt \ - --restart=unless-stopped \ - -p 8080:8080 \ - -v $(pwd)/data:/app/data \ - -v /run/udev:/run/udev:ro \ - --device=/dev/serial/by-id/usb-Texas_Instruments_TI_CC2531_USB_CDC___0X00124B0018ED3DDF-if00:/dev/ttyACM0 \ - --group-add keep-groups \ - -e TZ=Europe/Amsterdam \ - koenkk/zigbee2mqtt - diff --git a/terraform/lhn2pi-zigbee2mqtt/main.tf b/terraform/lhn2pi-zigbee2mqtt/main.tf index 90527ee..2857b99 100644 --- a/terraform/lhn2pi-zigbee2mqtt/main.tf +++ b/terraform/lhn2pi-zigbee2mqtt/main.tf @@ -4,26 +4,15 @@ terraform { source = "kreuzwerker/docker" version = "3.0.2" } - linode = { - source = "linode/linode" - version = "1.30.0" - } - postgresql = { - source = "cyrilgdn/postgresql" - version = "1.18.0" - } - sops = { - source = "lokkersp/sops" - version = "0.6.10" - } } } provider "docker" { - host = "ssh://lhn2pi.dn42.trygvis.io" + host = "ssh://${local.host}" } locals { + host = "lhn2pi.dn42.trygvis.io" docker_image = "koenkk/zigbee2mqtt:1.42.0" public_ip = module.ipam.hosts.lhn2pi.address } |