[ansible-devel] Ansible J2 unicode

2019-11-05 Thread Tom Davison
Hi everyone. When trying to template out a weblogic wl.properties file, I am running into a Jinja2 template problem. Here is a snippet of code I am running into issues with: # ADDITIONAL MACHINE PROPERTIES

[ansible-devel] Why not environment variable to store vault secrets ?

2019-11-05 Thread Gabriel Lewertowski
Hi ! I wrote the PR 64383 to add an option for using environment to store vault secrets. The PR was rejected, I would like to know more about why storing secrets in environment is discouraged. If the variable is exported, it's of course not comp

Re: [ansible-devel] Ansible J2 unicode

2019-11-05 Thread Matt Martz
By doing this: {{ [more_servers] }} You are creating a python list, and then printing it. I think you instead want: [{{ more_servers }}] On Tue, Nov 5, 2019 at 2:11 PM Tom Davison wrote: > Hi everyone. > > When trying to template out a weblogic wl.properties file, I am running > into a Jinja

Re: [ansible-devel] Ansible J2 unicode

2019-11-05 Thread Tom Davison
Matt, you sir are a life saver! That is exactly what I am looking for. Thanks much!! On Tuesday, November 5, 2019 at 2:22:05 PM UTC-6, Matt Martz wrote: > > By doing this: > > {{ [more_servers] }} > > You are creating a python list, and then printing it. > > I think you instead want: > > [{{ mor