mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
12 lines
456 B
YAML
12 lines
456 B
YAML
---
|
|
# Rather than managing the entire mesh.properties file, we only manage individual
|
|
# properties because upstream the product sets some properties by editing the file
|
|
- name: Update additional ansible-managed mesh properties
|
|
ansible.builtin.lineinfile:
|
|
path: "{{ mesh_properties_file }}"
|
|
search_string: "{{ mesh_prop_key }}="
|
|
line: "{{ item }}"
|
|
vars:
|
|
mesh_prop_key: "{{ item.split('=') | first }}"
|
|
loop: "{{ atl_mesh_properties }}"
|