You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project, ansible-pr...@olstad.com
Thanks alot dude. It did work ^^ i have recently got it working using lookup('file', '/etc/foo.txt') | from_json).get('fw2').get('ipv4').get('rtr').get('ip') # haha though it didn't look quit pretty i noticed if i am using an attribute with a minus sign i.e "fw2-m" the dot notation wouldn't work. Just curious how could one overcome this issue?
Kai Stian Olstad
unread,
Jul 11, 2016, 1:50:14 PM7/11/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ansible...@googlegroups.com
Python identifiers is not allowed to have dash in them(because dash is a
subtraction), so only way around it in Ansible, is to use the square
brackets notation.
--
Kai Stian Olstad
Dader Grund
unread,
Jul 12, 2016, 7:51:56 AM7/12/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project, ansible-pr...@olstad.com
can u please tell me why should one add a single parentheses to "from_json).foo" ?