diff --git a/README.md b/README.md
index 65db1a8f1229094bfe50be1dfe4ea2e26ab16d81..94d3041dbe1428bed35c213a7f0d38a0a4864dcc 100644
--- a/README.md
+++ b/README.md
@@ -166,6 +166,7 @@ Next change the version in the following places:
 
 # Release Notes
 
+* 0.29.1-2 Fix vector tenant_id, must be string
 * 0.29.1 Cache SNMP MiB files to circumvent ASTRON domain blacklisting
 * 0.29.0 Metric & Logging replication to central monitoring
 * 0.28.2 Bugfixes / rollout fixes
diff --git a/infra/jobs/station/logging.levant.nomad b/infra/jobs/station/logging.levant.nomad
index 5632e3bb4ccd5e412458c58f5adac139958e4d03..d0a866395d96dfacad98d3b5556ebf8162ac6520 100644
--- a/infra/jobs/station/logging.levant.nomad
+++ b/infra/jobs/station/logging.levant.nomad
@@ -125,7 +125,7 @@ healthchecks.require_healthy = true
 [sinks.loki_central]
   type                 = "loki"
   inputs               = [ "nomad-flags" ]
-  tenant_id            = [[.station]]
+  tenant_id            = "[[.station]]"
   endpoint             = "http://logs.lofar-central.service.consul:3100"
   encoding.codec       = "json"
   healthcheck.enabled  = true
diff --git a/tangostationcontrol/VERSION b/tangostationcontrol/VERSION
index 25939d35c738f04e70e1c42f05a75592c48bd67d..302b4574cebaf71f61541b1887ae568d20ebb823 100644
--- a/tangostationcontrol/VERSION
+++ b/tangostationcontrol/VERSION
@@ -1 +1 @@
-0.29.1
+0.29.1-2