summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorLiang Xia <lxia@redhat.com>2015-03-03 11:00:08 +0800
committerLiang Xia <lxia@redhat.com>2015-03-03 11:00:08 +0800
commit828161e22b2a551ac1bbe00eeb753d926631f0ce (patch)
treea2ea5d4bb338ded5a2f2a75374b24105ec802b6e /playbooks
parent5a3b4171f364ed05d8f9c630467938b6fdd60f64 (diff)
downloadopenshift-828161e22b2a551ac1bbe00eeb753d926631f0ce.tar.gz
openshift-828161e22b2a551ac1bbe00eeb753d926631f0ce.tar.bz2
openshift-828161e22b2a551ac1bbe00eeb753d926631f0ce.tar.xz
openshift-828161e22b2a551ac1bbe00eeb753d926631f0ce.zip
Correct syntax error of missing quotes
Always quote template expression brackets when they start a value.
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/aws/openshift-node/config.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/aws/openshift-node/config.yml b/playbooks/aws/openshift-node/config.yml
index 4e851f928..f68041843 100644
--- a/playbooks/aws/openshift-node/config.yml
+++ b/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
}