I'm trying to associate a policy file in my vault test container. But It is giving me an error.
Below is the command I'm running.
Container.ExecResult result = vaultContainer.execInContainer("vault", "policy", "write", "admin", "- <<EOF\n" +
"path \"secret/*\" {\n" +
" capabilities = [ \"read\" ]\n" +
"}\n" +
"EOF");
Error:
Container.ExecResult(exitCode=2, stdout=, stderr=Error opening policy file: open - <<EOF
path "secret/*" {
capabilities = [ "read" ]
}
EOF: no such file or directory
)
And policy is not getting written in the vault container. Any help would be greatly apprecited.
I was able to run the command with the following steps:
.withClasspathResourceMapping("policy.hcl", "/opt/policy.hcl", BindMode.READ_ONLY);
.vaultContainer.execInContainer("vault", "policy", "write", "full_access","/opt/policy.hcl")