diff --git a/docs/static/configuration.asciidoc b/docs/static/configuration.asciidoc index 25ede16e4..0948493d3 100644 --- a/docs/static/configuration.asciidoc +++ b/docs/static/configuration.asciidoc @@ -606,7 +606,7 @@ This feature is _experimental_, to enable it you will need to run logstash with ==== Overview -* You can set environment variable references into Logstash plugins configuration using `${var}` or `$var`. +* You can set environment variable references into Logstash plugins configuration using `${var}`. * Each reference will be replaced by environment variable value at Logstash startup. * The replacement is case-sensitive. * References to undefined variables raise a Logstash configuration error. @@ -620,16 +620,6 @@ This feature is _experimental_, to enable it you will need to run logstash with |================================== |Logstash config source |Environment |Logstash config result -| -[source,ruby] ----- -input { - tcp { - port => "$TCP_PORT" - } -} ----- - | [source,shell] ----