Re: [ansible-project] Another report creation problem

2024-02-12 Thread Dimitri Yioulos
I hope i don't upset the list if i give this a bump, as i'd really like to get a solution. Please see my previous post above. On Friday, January 26, 2024 at 9:24:28 AM UTC-5 Dimitri Yioulos wrote: > Good day, everyone. I've continued this thread because, although I'm > getting a report of packa

Re: [ansible-project] How to use Authorization bearer token in ansible.builtin.uri module

2024-02-12 Thread Todd Lewis
According to https://support.atlassian.com/bitbucket-cloud/docs/using-access-tokens/ that header should be Authorization: "Bearer {{ bearer_token }}" It makes no mention of an "access_token" header. On 2/11/24 9:19 PM, Mohanraj B wrote: Hi, I am trying to call bitbucket REST APIs with an

[ansible-project] Re: Role Handler Separation

2024-02-12 Thread Vinay Mulugund
This seems similar to something you are looking for: https://stackoverflow.com/questions/75134796/ansible-handlers-per-operating-system-with-same-name On Friday, February 9, 2024 at 5:12:06 AM UTC+5:30 John Petro wrote: > Good Evening... A coworker of mine is working on finishing up a role,

[ansible-project] How to use Authorization bearer token in ansible.builtin.uri module

2024-02-12 Thread Mohanraj B
Hi, I am trying to call bitbucket REST APIs with ansible.builtin.uri module using Authorization token like below. -- - name: test bearer token hosts: localhost tasks: - name: use rest API to fetch data uri: headers: Content-Type: application/json access_token: "{{ bearer_token }}" url: https://