소스 검색

Correct syntax error of missing quotes

Always quote template expression brackets when they start a value.
Liang Xia 10 년 전
부모
커밋
828161e22b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      playbooks/aws/openshift-node/config.yml

+ 1 - 1
playbooks/aws/openshift-node/config.yml

@@ -38,6 +38,6 @@
         role: openshift_node,
         openshift_master_ips: "{{ hostvars['localhost'].openshift_master_ips | default(['']) }}",
         # TODO: add openshift_Master_public_ips
-        openshift_env: {{ "oo_env" }}
+        openshift_env: "{{ oo_env }}"
         # TODO: openshift_public_ip: set to aws instance public ip
       }