Add argument specs for mastodon
This commit is contained in:
parent
b3301585ee
commit
5b550885bd
2 changed files with 37 additions and 8 deletions
37
roles/mastodon/meta/argument_specs.yml
Normal file
37
roles/mastodon/meta/argument_specs.yml
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
---
|
||||||
|
argument_specs:
|
||||||
|
main:
|
||||||
|
options:
|
||||||
|
vapid_public_key:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
vapid_private_key:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
otp_secret:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
secret_key_base:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
db_pass:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
smtp_password:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
aws_secret_access_key:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
active_record_encryption_deterministic_key:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
active_record_encryption_key_derivation_salt:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
active_record_encryption_primary_key:
|
||||||
|
type: str
|
||||||
|
required: true
|
||||||
|
ldap_password:
|
||||||
|
type: str
|
||||||
|
required: true
|
|
@ -2,25 +2,17 @@ version: v4.3.0
|
||||||
|
|
||||||
local_domain: m.comfycamp.space
|
local_domain: m.comfycamp.space
|
||||||
|
|
||||||
vapid_public_key: change_me
|
|
||||||
vapid_private_key: change_me
|
|
||||||
otp_secret: change_me
|
|
||||||
secret_key_base: change_me
|
|
||||||
|
|
||||||
db_host: postgresql
|
db_host: postgresql
|
||||||
db_user: mastodon
|
db_user: mastodon
|
||||||
db_name: mastodon
|
db_name: mastodon
|
||||||
db_pass: change_me
|
|
||||||
db_port: "5432"
|
db_port: "5432"
|
||||||
|
|
||||||
smtp_server: comfycamp.space
|
smtp_server: comfycamp.space
|
||||||
smtp_port: "465"
|
smtp_port: "465"
|
||||||
smtp_login: mastodon@comfycamp.space
|
smtp_login: mastodon@comfycamp.space
|
||||||
smtp_password: change_me
|
|
||||||
smtp_from_address: mastodon@comfycamp.space
|
smtp_from_address: mastodon@comfycamp.space
|
||||||
|
|
||||||
s3_endpoint: http://minio:9000
|
s3_endpoint: http://minio:9000
|
||||||
s3_hostname: s3.comfycamp.space
|
s3_hostname: s3.comfycamp.space
|
||||||
s3_bucket: mastodon
|
s3_bucket: mastodon
|
||||||
aws_access_key_id: WfSoEsOL1Glg9GXc3sRN
|
aws_access_key_id: WfSoEsOL1Glg9GXc3sRN
|
||||||
aws_secret_access_key: change_me
|
|
||||||
|
|
Loading…
Reference in a new issue