Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
matrix_authentication_service
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
FSI Ansible
matrix_authentication_service
Commits
42d2cbf0
Verified
Commit
42d2cbf0
authored
6 months ago
by
David Mehren
Browse files
Options
Downloads
Patches
Plain Diff
Make MAS version configurable
parent
f04b6ff3
Branches
Branches containing commit
Tags
v1.5.0
Tags containing commit
No related merge requests found
Pipeline
#269627
failed
6 months ago
Stage: linting
Changes
3
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
defaults/main.yml
+1
-0
1 addition, 0 deletions
defaults/main.yml
tasks/main.yml
+1
-1
1 addition, 1 deletion
tasks/main.yml
templates/config.yaml
+5
-0
5 additions, 0 deletions
templates/config.yaml
with
7 additions
and
1 deletion
defaults/main.yml
+
1
−
0
View file @
42d2cbf0
---
matrix_authentication_service_pg_create_database
:
true
matrix_authentication_service_version
:
latest
matrix_authentication_service_arch
:
x86_64
matrix_authentication_service_pg_max_connections
:
10
matrix_authentication_service_pg_min_connections
:
0
...
...
This diff is collapsed.
Click to expand it.
tasks/main.yml
+
1
−
1
View file @
42d2cbf0
...
...
@@ -9,7 +9,7 @@
-
name
:
Download & unpack mas-cli
ansible.builtin.unarchive
:
src
:
"
https://github.com/element-hq/matrix-authentication-service/releases/
latest/
download/mas-cli-{{
matrix_authentication_service_arch
}}-linux.tar.gz"
src
:
"
https://github.com/element-hq/matrix-authentication-service/releases/download
/{{
matrix_authentication_service_version
}}
/mas-cli-{{
matrix_authentication_service_arch
}}-linux.tar.gz"
dest
:
/opt/matrix_authentication_service
remote_src
:
true
...
...
This diff is collapsed.
Click to expand it.
templates/config.yaml
+
5
−
0
View file @
42d2cbf0
...
...
@@ -79,6 +79,11 @@ upstream_oauth2:
action
:
require
template
:
"
{%
raw
%}{{
user.email
}}{%
endraw
%}"
set_email_verification
:
always
# An account name, for display purposes only
# This helps end user identify what account they are using
account_name
:
action
:
require
template
:
"
{%
raw
%}@{{
user.preferred_username
}}{%
endraw
%}"
email
:
from
:
'
{{
matrix_authentication_service_email_from
}}'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment