Explorar el Código

Merge pull request #9249 from csrwng/fix_vpc_name

AWS: use vpc name instead of cluster id when creating security groups
Scott Dodson hace 6 años
padre
commit
118a1e01a1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      roles/openshift_aws/tasks/security_group.yml

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

@@ -3,7 +3,7 @@
   ec2_vpc_net_facts:
     region: "{{ openshift_aws_region }}"
     filters:
-      "tag:Name": "{{ openshift_aws_clusterid }}"
+      "tag:Name": "{{ openshift_aws_vpc_name }}"
   register: vpcout
 
 - name: create the node group sgs