Browse Source

Merge pull request #9249 from csrwng/fix_vpc_name

AWS: use vpc name instead of cluster id when creating security groups
Scott Dodson 6 years ago
parent
commit
118a1e01a1
1 changed files with 1 additions and 1 deletions
  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