File tree Expand file tree Collapse file tree 1 file changed +1
-15
lines changed
ansible/roles/cluster_infra/templates Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -205,11 +205,6 @@ resource "openstack_networking_port_v2" "login" {
205
205
206
206
binding {
207
207
vnic_type = "{{ cluster_vnic_type | default('normal') }}"
208
- {% if cluster_vnic_profile is defined %}
209
- profile = <<EOF
210
- {{ cluster_vnic_profile | to_json }}
211
- EOF
212
- {% endif %}
213
208
}
214
209
}
215
210
@@ -250,11 +245,7 @@ resource "openstack_networking_port_v2" "control" {
250
245
251
246
binding {
252
247
vnic_type = "{{ cluster_vnic_type | default('normal') }}"
253
- {% if cluster_vnic_profile is defined %}
254
- profile = <<EOF
255
- {{ cluster_vnic_profile | to_json }}
256
- EOF
257
- {% endif %}
248
+
258
249
}
259
250
}
260
251
@@ -296,11 +287,6 @@ resource "openstack_networking_port_v2" "{{ partition.name }}" {
296
287
297
288
binding {
298
289
vnic_type = "{{ cluster_vnic_type | default('normal') }}"
299
- {% if cluster_vnic_profile is defined %}
300
- profile = <<EOF
301
- {{ cluster_vnic_profile | to_json }}
302
- EOF
303
- {% endif %}
304
290
}
305
291
}
306
292
You can’t perform that action at this time.
0 commit comments