diff --git a/roles/kubernetes/node/templates/openssl.conf.j2 b/roles/kubernetes/node/templates/openssl.conf.j2
index 05015651f8def8f71b59fcc8acdaaa869adf7f34..ce2b88e9c650cb86588541246395368f776db7da 100644
--- a/roles/kubernetes/node/templates/openssl.conf.j2
+++ b/roles/kubernetes/node/templates/openssl.conf.j2
@@ -15,7 +15,7 @@ IP.{{ loop.index }} = {{ hostvars[host]['ip'] | default(hostvars[host]['ansible_
 {% endfor %}
 {% set idx =  groups['kube-master'] | length | int + 1 %}
 IP.{{ idx | string }} = {{ kube_apiserver_ip }}
-{% if kube_loadbalancer_ip is defined | default('') %}                                                                                      
+{% if loadbalancer_address is defined | default('') %}
 {% set idx =  idx | int + 1 %}
-IP.{{ idx | string }} = {{ kube_loadbalancer }}
+IP.{{ idx | string }} = {{ loadbalancer_address }}
 {% endif %}