소스 검색

Merge pull request #9249 from csrwng/fix_vpc_name

AWS: use vpc name instead of cluster id when creating security groups
Scott Dodson 6 년 전
부모
커밋
118a1e01a1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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