converge icon indicating copy to clipboard operation
converge copied to clipboard

Parameters are not being passed when used with remote 'rpc-addr'

Open dmlemos opened this issue 7 years ago • 0 comments

Given $ cat test.hcl

param "username" {
  default = "user"
}

task.query "test-env" {
  query = "echo {{param `username`}}"
}

Run converge plan --rpc-addr xxx:4774 --rpc-token xxx --params username=administrator test.hcl

Result user - not what expected

dmlemos avatar Jun 13 '17 17:06 dmlemos