Skip to content

Commit 464f7e2

Browse files
author
scrungus
committed
cluster_vnic_profile removed as no longer used
1 parent 9229bda commit 464f7e2

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

ansible/roles/cluster_infra/templates/resources.tf.j2

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,6 @@ resource "openstack_networking_port_v2" "login" {
205205

206206
binding {
207207
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 %}
213208
}
214209
}
215210

@@ -250,11 +245,7 @@ resource "openstack_networking_port_v2" "control" {
250245

251246
binding {
252247
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+
258249
}
259250
}
260251

@@ -296,11 +287,6 @@ resource "openstack_networking_port_v2" "{{ partition.name }}" {
296287

297288
binding {
298289
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 %}
304290
}
305291
}
306292

0 commit comments

Comments
 (0)