@@ -12,7 +12,7 @@ ansible_tower:
12
12
admin_password: "{{ ansible_tower_admin_password }}"
13
13
projects:
14
14
- name: "{{ customer_engagement }}-project"
15
- description: "{{ description }}"
15
+ description: "Project for {{ customer_engagement }}"
16
16
organization: "{{ organization }}"
17
17
scm_type: "git"
18
18
scm_url: "{{ url }}"
@@ -61,7 +61,7 @@ ansible_tower:
61
61
extra_data:
62
62
body: {% raw %} "{{ welcome_internal.body }}"{% endraw %}
63
63
title: {% raw %} "{{ welcome_internal.title }}"{% endraw %}
64
- list_of_users: {% raw %} "{{ internal.list_of_users }}"{% endraw %}
64
+ list_of_users: {% raw %} "{{ internal.list_of_users | default( [] ) }}"{% endraw %}
65
65
- name: "{{ customer_engagement }}-welcome-all"
66
66
description: "Welcome notification for {{ company_name }} and {{ customer_name }}"
67
67
{% raw -%}
@@ -72,7 +72,7 @@ ansible_tower:
72
72
extra_data:
73
73
body: {% raw %} "{{ welcome_all.body }}"{% endraw %}
74
74
title: {% raw %} "{{ welcome_all.title }}"{% endraw %}
75
- list_of_users: {% raw %} "{{ full.list_of_users }}"{% endraw %}
75
+ list_of_users: {% raw %} "{{ full.list_of_users | default( [] ) }}"{% endraw %}
76
76
- name: "{{ customer_engagement }}-pre-offboard"
77
77
description: "Pre-offboard"
78
78
{% raw -%}
@@ -83,7 +83,7 @@ ansible_tower:
83
83
extra_data:
84
84
body: {% raw %} "{{ pre_offboard.body }}"{% endraw %}
85
85
title: {% raw %} "{{ pre_offboard.title }}"{% endraw %}
86
- list_of_users: {% raw %} "{{ full.list_of_users }}"{% endraw %}
86
+ list_of_users: {% raw %} "{{ full.list_of_users | default( [] ) }}"{% endraw %}
87
87
- name: "{{ customer_engagement }}-offboard-1"
88
88
description: "Offboard 1"
89
89
{% raw -%}
@@ -94,7 +94,7 @@ ansible_tower:
94
94
extra_data:
95
95
body: {% raw %} "{{ offboard_1.body }}"{% endraw %}
96
96
title: {% raw %} "{{ offboard_1.title }}"{% endraw %}
97
- list_of_users: {% raw %} "{{ full.list_of_users }}"{% endraw %}
97
+ list_of_users: {% raw %} "{{ full.list_of_users | default( [] ) }}"{% endraw %}
98
98
- name: "{{ customer_engagement }}-offboard-2"
99
99
description: "Offboard 2"
100
100
{% raw -%}
@@ -105,7 +105,7 @@ ansible_tower:
105
105
extra_data:
106
106
body: {% raw %} "{{ offboard_2.body }}"{% endraw %}
107
107
title: {% raw %} "{{ offboard_2.title }}"{% endraw %}
108
- list_of_users: {% raw %} "{{ full.list_of_users }}"{% endraw %}
108
+ list_of_users: {% raw %} "{{ full.list_of_users | default( [] ) }}"{% endraw %}
109
109
- name: "{{ customer_engagement }}-offboard-3"
110
110
description: "Offboard 3"
111
111
{% raw -%}
@@ -116,7 +116,7 @@ ansible_tower:
116
116
extra_data:
117
117
body: {% raw %} "{{ offboard_3.body }}"{% endraw %}
118
118
title: {% raw %} "{{ offboard_3.title }}"{% endraw %}
119
- list_of_users: {% raw %} "{{ full.list_of_users }}"{% endraw %}
119
+ list_of_users: {% raw %} "{{ full.list_of_users | default( [] ) }}"{% endraw %}
120
120
- name: "{{ customer_engagement }}-shutoff"
121
121
description: "Shutoff e-mail for the {{ customer_engagement }} engagement"
122
122
{% raw -%}
@@ -127,4 +127,4 @@ ansible_tower:
127
127
extra_data:
128
128
body: {% raw %} "{{ shutoff.body }}"{% endraw %}
129
129
title: {% raw %} "{{ shutoff.title }}"{% endraw %}
130
- list_of_users: {% raw %} "{{ full.list_of_users }}"{% endraw %}
130
+ list_of_users: {% raw %} "{{ full.list_of_users | default( [] ) }}"{% endraw %}
0 commit comments