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/main.tf | |
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/main.tf')
-rw-r--r-- | terraform/lhn2pi-zigbee2mqtt/main.tf | 15 |
1 files changed, 2 insertions, 13 deletions
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 } |