diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2025-02-05 18:04:47 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2025-02-05 18:04:47 +0100 |
commit | 177895ce74e47bc9327020a73b39b080a872315a (patch) | |
tree | 2ef36ddda3301e96d957e40dcb7e6fc71207457c /terraform/modules/zigbee2mqtt/vars.tf | |
parent | 21e47c8b92657606e81a30e1ff6734aeb7ba22bc (diff) | |
download | infra-177895ce74e47bc9327020a73b39b080a872315a.tar.gz infra-177895ce74e47bc9327020a73b39b080a872315a.tar.bz2 infra-177895ce74e47bc9327020a73b39b080a872315a.tar.xz infra-177895ce74e47bc9327020a73b39b080a872315a.zip |
z2m: Creating tf module
Diffstat (limited to 'terraform/modules/zigbee2mqtt/vars.tf')
-rw-r--r-- | terraform/modules/zigbee2mqtt/vars.tf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/terraform/modules/zigbee2mqtt/vars.tf b/terraform/modules/zigbee2mqtt/vars.tf new file mode 100644 index 0000000..2dcf69c --- /dev/null +++ b/terraform/modules/zigbee2mqtt/vars.tf @@ -0,0 +1,17 @@ +variable "docker_image" { + type = string + default = "koenkk/zigbee2mqtt" +} + +variable "docker_version" { + type = string + default = "1.42.0" +} + +variable "public_ip" { + type = string +} + +variable "serial_port" { + type = string +} |