docs: Fix corrupted section in TEMPERATURE_MONITORING.md

Removed garbled Terraform code that was accidentally merged into the
"How It Works" section, likely from a copy-paste error or merge conflict.
This commit is contained in:
rcourtman 2025-12-02 23:48:16 +00:00
parent eed045bd15
commit 4dd335e74c

View file

@ -83,24 +83,11 @@ journalctl -u pulse-sensor-proxy -f
3. **Transport**:
* **Local**: Uses a Unix socket (`/run/pulse-sensor-proxy`) for zero-latency, secure access.
* **Remote**: Uses mutual TLS over HTTPS (port 8443).
4. **No SSH Keys**: Pulse containers no longer need SSH keys to read temperatures. user = "root"
private_key = file(var.ssh_private_key)
}
4. **No SSH Keys**: Pulse containers no longer need SSH keys to read temperatures.
provisioner "remote-exec" {
inline = [
"curl -fsSL https://github.com/rcourtman/Pulse/releases/latest/download/install-sensor-proxy.sh -o /tmp/install-sensor-proxy.sh",
"chmod +x /tmp/install-sensor-proxy.sh",
"/tmp/install-sensor-proxy.sh --standalone --pulse-server ${var.pulse_server_url} --quiet",
"systemctl is-active pulse-sensor-proxy || exit 1"
]
}
---
triggers = {
pulse_version = var.pulse_version
}
}
```
## 🔧 Advanced Configuration
#### Manual Configuration (No Script)