We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 683f017 + 5aa1089 commit 7af143eCopy full SHA for 7af143e
roles/cluster_infra/templates/resources.tf.j2
@@ -82,9 +82,11 @@ resource "openstack_blockstorage_volume_v3" "home" {
82
name = "{{ cluster_name }}-home"
83
description = "Home for control node"
84
size = "{{ home_volume_size }}"
85
- {% if use_home_volume_type_fast and home_volume_type_fast is defined %}
+ {% if use_home_volume_type_fast is defined and use_home_volume_type_fast %}
86
+ {% if home_volume_type_fast is defined %}
87
volume_type = "{{ home_volume_type_fast }}"
88
{% endif %}
89
+ {% endif %}
90
}
91
92
0 commit comments