Bläddra i källkod

Merge pull request #7341 from blrm/timout-timeout

Correcting a typo: idle_timout -> idle_timeout
Kenny Woodson 7 år sedan
förälder
incheckning
d4870fd193

+ 3 - 3
roles/openshift_aws/defaults/main.yml

@@ -59,7 +59,7 @@ openshift_aws_elb_dict:
         interval: 30
         interval: 30
         unhealthy_threshold: 2
         unhealthy_threshold: 2
         healthy_threshold: 2
         healthy_threshold: 2
-      idle_timout: 400
+      idle_timeout: 400
       listeners:
       listeners:
       - protocol: tcp
       - protocol: tcp
         load_balancer_port: 80
         load_balancer_port: 80
@@ -81,7 +81,7 @@ openshift_aws_elb_dict:
         interval: 30
         interval: 30
         unhealthy_threshold: 2
         unhealthy_threshold: 2
         healthy_threshold: 2
         healthy_threshold: 2
-      idle_timout: 400
+      idle_timeout: 400
       listeners:
       listeners:
       - protocol: tcp
       - protocol: tcp
         load_balancer_port: 80
         load_balancer_port: 80
@@ -103,7 +103,7 @@ openshift_aws_elb_dict:
         interval: 30
         interval: 30
         unhealthy_threshold: 2
         unhealthy_threshold: 2
         healthy_threshold: 2
         healthy_threshold: 2
-      idle_timout: 400
+      idle_timeout: 400
       listeners:
       listeners:
       - protocol: tcp
       - protocol: tcp
         load_balancer_port: 80
         load_balancer_port: 80

+ 1 - 1
roles/openshift_aws/tasks/elb_single.yml

@@ -10,7 +10,7 @@
     state: present
     state: present
     cross_az_load_balancing: "{{ item.value.cross_az_load_balancing }}"
     cross_az_load_balancing: "{{ item.value.cross_az_load_balancing }}"
     security_group_names: "{{ l_elb_security_groups[l_elb_dict_item.key] }}"
     security_group_names: "{{ l_elb_security_groups[l_elb_dict_item.key] }}"
-    idle_timeout: "{{ item.value.idle_timout }}"
+    idle_timeout: "{{ item.value.idle_timeout }}"
     region: "{{ openshift_aws_region }}"
     region: "{{ openshift_aws_region }}"
     subnets:
     subnets:
     - "{{ subnetout.subnets[0].id }}"
     - "{{ subnetout.subnets[0].id }}"