mirror of
https://github.com/ublue-os/forge.git
synced 2025-04-24 07:23:45 +03:00
12 lines
294 B
YAML
12 lines
294 B
YAML
![]() |
---
|
||
|
- name: Get API token
|
||
|
ansible.builtin.uri:
|
||
|
url: "http://{{ ansible_host }}:3000/api/auth/login"
|
||
|
method: POST
|
||
|
body:
|
||
|
auth: "{{ semaphore_admin_user }}"
|
||
|
password: "{{ semaphore_admin_password }}"
|
||
|
body_format: json
|
||
|
status_code: 204
|
||
|
register: semaphore_login
|