We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8578093 commit d15c128Copy full SHA for d15c128
2 files changed
ansible/group_vars/alpha-api-base.yml
@@ -73,7 +73,7 @@ api_base_container_envs:
73
- name: KRAIN_PORT
74
value: "{{ krain_port }}"
75
- name: MIXPANEL_APP_ID
76
- value: "{{ api_mixpanel_app_id }}"
+ value: "{{ api_mixpanel_app_id | default('ansible-undefined') }}"
77
- name: MONGO_AUTH
78
value: "{{ api_mongo_auth }}"
79
- name: MONGO_DB
ansible/group_vars/alpha-big-poppa-base.yml
@@ -58,6 +58,6 @@ big_poppa_base_container_envs:
58
- name: GITHUB_PROTOCOL
59
value: "http"
60
- name: STRIPE_API_KEY
61
- value: "{{ cream_stripe_secret_key }}"
+ value: "{{ cream_stripe_secret_key | default('ansible-undefined') }}"
62
- name: STRIPE_PUBLISHABLE_KEY
63
- value: "{{ cream_stripe_publishable_key }}"
+ value: "{{ cream_stripe_publishable_key | default('ansible-undefined') }}"
0 commit comments