Skip to content

Commit

Permalink
rename secret-token to token
Browse files Browse the repository at this point in the history
  • Loading branch information
reschandreas committed Jan 29, 2024
1 parent ad81540 commit 11f0344
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion roles/artemis/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ artemis_eureka_instance_id: "{{ node_id }}"
##############################################################################
#aeolus:
# url:
# secret:
# token:

##############################################################################
# Auto-generated Variables - No not alter!
Expand Down
4 changes: 2 additions & 2 deletions roles/artemis/templates/application-prod.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ artemis:
{% if aeolus.url is defined and aeolus.url is not none %}
aeolus:
url: {{ aeolus.url }}
{% if aeolus.secret is defined and aeolus.secret is not none %}
secret-token: {{ aeolus.secret }}
{% if aeolus.token is defined and aeolus.token is not none %}
token: {{ aeolus.token }}
{% endif %}
{% endif %}

Expand Down
4 changes: 2 additions & 2 deletions roles/artemis/templates/artemis.env.j2
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ ARTEMIS_IRIS_SECRETTOKEN='{{ iris.secret }}'
{% endif %}
{% if aeolus.url is defined and aeolus.url is not none %}
AEOLUS_URL='{{ aeolus.url }}'
{% if aeolus.secret is defined and aeolus.secret is not none %}
AEOLUS_SECRETTOKEN='{{ aeolus.secret }}'
{% if aeolus.token is defined and aeolus.token is not none %}
AEOLUS_TOKEN='{{ aeolus.token }}'
{% endif %}
{% endif %}
ARTEMIS_SCHEDULING_DATAEXPORTCREATIONTIME = '{{ artemis_scheduling_data_export_creation_time }}'
Expand Down

0 comments on commit 11f0344

Please sign in to comment.