This message was deleted.
# puppet
s
This message was deleted.
c
Copy code
Error: Failed to apply catalog: Could not parse the PKCS7: no start line
r
$vmagent_args
is already a Sensitive, or am I misremembering?
c
$sensitive_password
is declared
Sensitive
in the params.
$vmagent_args
used
${sensitive_password.unwrap}
and some other string interpolations along the way.
Copy code
$vmagent_args = @("EOT")
    # Set the command-line arguments to pass to the server.
    ARGS="-promscrape.config=/opt/victoriametrics/conf/prometheus-scrape.yaml \
-remoteWrite.basicAuth.password=${sensitive_password.unwrap} \
      -remoteWrite.tmpDataPath=/opt/victoriametrics/tmp-data
    |EOT
r
ok, I'm out of ideas. Sorry.
👍 1
I think the thing that Nate got working was wrapping everything in Sensitive (presumably not already Sensitive data)
c
TY anyway.