Ver Fonte

Fail when unable to fetch expected security groups.

Andrew Butcher há 7 anos atrás
pai
commit
d7f995af63
1 ficheiros alterados com 6 adições e 0 exclusões
  1. 6 0
      roles/openshift_aws/tasks/launch_config.yml

+ 6 - 0
roles/openshift_aws/tasks/launch_config.yml

@@ -7,6 +7,12 @@
     region: "{{ openshift_aws_region }}"
     region: "{{ openshift_aws_region }}"
   register: ec2sgs
   register: ec2sgs
 
 
+- fail:
+    msg: >
+      "Unable to fetch expected security groups: {{ openshift_aws_launch_config_security_groups[openshift_aws_node_group.group] }}"
+  when:
+  - (ec2sgs.security_groups | map(attribute='group_name') | list | sort) != (openshift_aws_launch_config_security_groups[openshift_aws_node_group.group] | sort)
+
 # Create the scale group config
 # Create the scale group config
 - name: Create the node scale group launch config
 - name: Create the node scale group launch config
   ec2_lc:
   ec2_lc: