File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change 33 hosts : localhost
44 gather_facts : no
55 tasks :
6- - name : " Ensures required secret are provided."
7- ansible.builtin.assert :
8- that :
9- - client_id is defined and client_id | length > 0
10- - client_secret is defined and client_secret | length > 0
11- fail_msg : " Missing required env vars PROD_JBOSSNETWORK_API_CLIENTID and/or PROD_JBOSSNETWORK_API_SECRET"
12-
136 - name : Search EAP Product
147 middleware_automation.common.product_search :
158 client_id : " {{ lookup('env', 'PROD_JBOSSNETWORK_API_CLIENTID') }}"
2619
2720 - name : Retrieve product download using JBossNetwork API
2821 middleware_automation.common.product_search :
29- client_id : " {{ client_id }}"
30- client_secret : " {{ client_secret }}"
22+ client_id : " {{ lookup('env', 'PROD_JBOSSNETWORK_API_CLIENTID') }}"
23+ client_secret : " {{ lookup('env', 'PROD_JBOSSNETWORK_API_SECRET') }}"
3124 product_type : BUGFIX
3225 product_version : ' 7.4'
3326 product_category : appplatform
You can’t perform that action at this time.
0 commit comments