aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2025-07-20 09:34:19 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2025-07-20 09:34:19 +0200
commit68d5da255ff2378bffb751cfaa5eed7b32fcb709 (patch)
treea7592bb88e658251355ec5e84f1f1295cdbea06b
parent5e5d95b1af0fa48ef349e3a39978aa54a24f9a8a (diff)
downloadinfra-68d5da255ff2378bffb751cfaa5eed7b32fcb709.tar.gz
infra-68d5da255ff2378bffb751cfaa5eed7b32fcb709.tar.bz2
infra-68d5da255ff2378bffb751cfaa5eed7b32fcb709.tar.xz
infra-68d5da255ff2378bffb751cfaa5eed7b32fcb709.zip
terraform fmt
-rw-r--r--terraform/lhn2pi-zigbee2mqtt/main.tf6
1 files changed, 3 insertions, 3 deletions
diff --git a/terraform/lhn2pi-zigbee2mqtt/main.tf b/terraform/lhn2pi-zigbee2mqtt/main.tf
index 2857b99..6003270 100644
--- a/terraform/lhn2pi-zigbee2mqtt/main.tf
+++ b/terraform/lhn2pi-zigbee2mqtt/main.tf
@@ -12,9 +12,9 @@ provider "docker" {
}
locals {
- host = "lhn2pi.dn42.trygvis.io"
+ host = "lhn2pi.dn42.trygvis.io"
docker_image = "koenkk/zigbee2mqtt:1.42.0"
- public_ip = module.ipam.hosts.lhn2pi.address
+ public_ip = module.ipam.hosts.lhn2pi.address
}
module "ipam" {
@@ -24,6 +24,6 @@ module "ipam" {
module "zigbee2mqtt" {
source = "../modules/zigbee2mqtt"
- public_ip = local.public_ip
+ public_ip = local.public_ip
serial_port = "/dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2688076-if00"
}