Ansible INI file module
Simplifying your DevOps life
- hosts: localhost
tasks:
- name: Change neutron user password
ini_file:
dest: ~/neutron.conf
section: keystone_authtoken
option: password
value: 12345cat neutron.conf
[keystone_authtoken]
password = 12345Last updated