Compare commits
7 commits
27ac5d7173
...
d690a6454a
Author | SHA1 | Date | |
---|---|---|---|
d690a6454a | |||
0eaf14609c | |||
50b5dd63e2 | |||
c54ef3281c | |||
40fbc3d001 | |||
a9e1070d46 | |||
ff436ae67c |
15 changed files with 80 additions and 8 deletions
|
@ -1,4 +1,12 @@
|
|||
[
|
||||
{
|
||||
"name": "configuration | compute client secret hash",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_dokuwiki_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_dokuwiki_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | emplace",
|
||||
"become": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"client_id": "{{var_authelia_for_dokuwiki_client_id}}",
|
||||
"client_secret": "{{var_authelia_for_dokuwiki_client_secret}}",
|
||||
"client_secret": "{{temp_authelia_for_dokuwiki_client_secret_hashed.stdout}}",
|
||||
"client_name": "DokuWiki",
|
||||
"public": false,
|
||||
"authorization_policy": "one_factor",
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
[
|
||||
{
|
||||
"name": "configuration | compute client secret hash",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_forgejo_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_forgejo_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | emplace",
|
||||
"become": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"client_id": "{{var_authelia_for_forgejo_client_id}}",
|
||||
"client_secret": "{{var_authelia_for_forgejo_client_secret}}",
|
||||
"client_secret": "{{temp_authelia_for_forgejo_client_secret_hashed.stdout}}",
|
||||
"client_name": "Forgejo",
|
||||
"public": false,
|
||||
"authorization_policy": "one_factor",
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
[
|
||||
{
|
||||
"name": "configuration | compute client secret hash",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_gitlab_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_gitlab_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | emplace",
|
||||
"become": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"client_id": "{{var_authelia_for_gitlab_client_id}}",
|
||||
"client_secret": "{{var_authelia_for_gitlab_client_secret}}",
|
||||
"client_secret": "{{temp_authelia_for_gitlab_client_secret_hashed.stdout}}",
|
||||
"client_name": "GitLab",
|
||||
"public": false,
|
||||
"authorization_policy": "one_factor",
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
[
|
||||
{
|
||||
"name": "configuration | compute client secret hash",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_hedgedoc_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_hedgedoc_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | emplace",
|
||||
"become": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"client_id": "{{var_authelia_for_hedgedoc_client_id}}",
|
||||
"client_secret": "{{var_authelia_for_hedgedoc_client_secret}}",
|
||||
"client_secret": "{{temp_authelia_for_hedgedoc_client_secret_hashed.stdout}}",
|
||||
"client_name": "Hedgedoc",
|
||||
"public": false,
|
||||
"authorization_policy": "one_factor",
|
||||
|
|
|
@ -1,4 +1,28 @@
|
|||
[
|
||||
{
|
||||
"name": "configuration | compute client secret hash | web",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_owncloud_web_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_owncloud_web_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | compute client secret hash | android",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_owncloud_android_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_owncloud_android_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | compute client secret hash | ios",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_owncloud_ios_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_owncloud_ios_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | emplace",
|
||||
"become": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"client_id": "{{var_authelia_for_owncloud_android_client_id}}",
|
||||
"client_secret": "{{var_authelia_for_owncloud_android_client_secret}}",
|
||||
"client_secret": "{{temp_authelia_for_owncloud_android_client_secret_hashed.stdout}}",
|
||||
"client_name": "ownCloud | Android Client",
|
||||
"authorization_policy": "one_factor",
|
||||
"scopes": [
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"client_id": "{{var_authelia_for_owncloud_ios_client_id}}",
|
||||
"client_secret": "{{var_authelia_for_owncloud_ios_client_secret}}",
|
||||
"client_secret": "{{temp_authelia_for_owncloud_ios_client_secret_hashed.stdout}}",
|
||||
"client_name": "ownCloud | iOS Client",
|
||||
"authorization_policy": "one_factor",
|
||||
"scopes": [
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
[
|
||||
{
|
||||
"name": "configuration | compute client secret hash",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_synapse_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_synapse_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | emplace",
|
||||
"become": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"client_id": "{{var_authelia_for_synapse_client_id}}",
|
||||
"client_secret": "{{var_authelia_for_synapse_client_secret}}",
|
||||
"client_secret": "{{temp_authelia_for_synapse_client_secret_hashed.stdout}}",
|
||||
"client_name": "Synapse",
|
||||
"public": false,
|
||||
"authorization_policy": "one_factor",
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
[
|
||||
{
|
||||
"name": "configuration | compute client secret hash",
|
||||
"become": true,
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "authelia crypto hash generate bcrypt --password {{var_authelia_for_vikunja_client_secret}} | cut --delimiter=' ' --fields='2-'"
|
||||
},
|
||||
"register": "temp_authelia_for_vikunja_client_secret_hashed"
|
||||
},
|
||||
{
|
||||
"name": "configuration | emplace",
|
||||
"become": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"client_id": "{{var_authelia_for_vikunja_client_id}}",
|
||||
"client_secret": "{{var_authelia_for_vikunja_client_secret}}",
|
||||
"client_secret": "{{temp_authelia_for_vikunja_client_secret_hashed.stdout}}",
|
||||
"client_name": "Vikunja",
|
||||
"public": false,
|
||||
"authorization_policy": "one_factor",
|
||||
|
|
Loading…
Add table
Reference in a new issue