Fix syntax error in role octavia-controller-config

Commit b00b866564 introduced a syntax
error where template expression brackets were not wrapped in quotes.

Change-Id: I638473ed7f9317d65fcc00d1046358505f6dfc71
This commit is contained in:
Carlos Goncalves 2018-12-11 14:51:21 +01:00
parent b5f6770b9e
commit b6e82e20b0
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
path: "{{ octavia_confd_prefix }}/etc/octavia/conf.d/common/post-deploy.conf"
section: controller_worker
option: amp_boot_network_list
value: {{ lb_mgmt_net_id }}
value: "{{ lb_mgmt_net_id }}"
- name: setting [controller_worker]/amp_secgroup_list
become: true
become_user: root
@ -17,7 +17,7 @@
path: "{{ octavia_confd_prefix }}/etc/octavia/conf.d/common/post-deploy.conf"
section: controller_worker
option: amp_secgroup_list
value: {{ lb_mgmt_secgroup_id }}
value: "{{ lb_mgmt_secgroup_id }}"
- name: making sure octavia health manager configuration directory exists
file: path="{{octavia_confd_prefix}}/etc/octavia/conf.d/octavia-health-manager" state=directory
become: true