Skip to content

Commit d15c128

Browse files
committed
Add more defaults to variables (Mixpanele and Stripe)
1 parent 8578093 commit d15c128

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ansible/group_vars/alpha-api-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ api_base_container_envs:
7373
- name: KRAIN_PORT
7474
value: "{{ krain_port }}"
7575
- name: MIXPANEL_APP_ID
76-
value: "{{ api_mixpanel_app_id }}"
76+
value: "{{ api_mixpanel_app_id | default('ansible-undefined') }}"
7777
- name: MONGO_AUTH
7878
value: "{{ api_mongo_auth }}"
7979
- name: MONGO_DB

ansible/group_vars/alpha-big-poppa-base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ big_poppa_base_container_envs:
5858
- name: GITHUB_PROTOCOL
5959
value: "http"
6060
- name: STRIPE_API_KEY
61-
value: "{{ cream_stripe_secret_key }}"
61+
value: "{{ cream_stripe_secret_key | default('ansible-undefined') }}"
6262
- name: STRIPE_PUBLISHABLE_KEY
63-
value: "{{ cream_stripe_publishable_key }}"
63+
value: "{{ cream_stripe_publishable_key | default('ansible-undefined') }}"

0 commit comments

Comments
 (0)