mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-05 10:20:27 -07:00
linter
This commit is contained in:
parent
fc0ee5a896
commit
b2edea8777
1 changed files with 3 additions and 3 deletions
|
@ -12,14 +12,14 @@
|
||||||
- name: Create certificate request
|
- name: Create certificate request
|
||||||
ansible.builtin.command: openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 365 -nodes -subj '/CN=instance'
|
ansible.builtin.command: openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 365 -nodes -subj '/CN=instance'
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
changed_when: False
|
changed_when: false
|
||||||
|
|
||||||
- name: Create vault directory
|
- name: Create vault directory
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
state: directory
|
state: directory
|
||||||
path: "/opt/keycloak/vault"
|
path: "/opt/keycloak/vault"
|
||||||
mode: 0755
|
mode: '0755'
|
||||||
|
|
||||||
- name: Make sure a jre is available (for keytool to prepare keystore)
|
- name: Make sure a jre is available (for keytool to prepare keystore)
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
@ -41,4 +41,4 @@
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: keystore.p12
|
src: keystore.p12
|
||||||
dest: /opt/keycloak/vault/keystore.p12
|
dest: /opt/keycloak/vault/keystore.p12
|
||||||
mode: 0444
|
mode: '0444'
|
||||||
|
|
Loading…
Add table
Reference in a new issue