-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathterraform.tfvars.example
77 lines (60 loc) · 2.55 KB
/
terraform.tfvars.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#--------------------------------------------------------------
# Variables for jitsi-terraform configuration with AWS
# Optional values are commented. Uncomment to override defaults.
#---------------------------------------------------------------
#-------------------
# AWS Configuration
#-------------------
# aws_profile = "default"
aws_region = "ap-south-1"
instance_type = "m5.xlarge"
#-----------------------------------
# Email Address for Let's Encrypt
# This email is used for generating
# an SSL certificate
#-----------------------------------
email_address = "[email protected]"
#--------------------------------------------------
# Admin username and password
# This is used for moderator credentials to start
# a meeting. It is also used to access recorded
# files when recording/streaming is enabled.
#--------------------------------------------------
admin_username = "admin"
admin_password = "somestrongpassword"
#--------------------------------------------------------------
# Base domain under which Jitsi server will be deployed
#--------------------------------------------------------------
parent_subdomain = "meet.mydomain.com"
#---------------------------------------------------------------------------
# (Optional) Subdomain under parent domain under which Jitsi will be hosted
# Uses a random ID if this was not set
# --------------------------------------------------------------------------
# subdomain = "dev"
#-------------------------------------------------------------
# SSH access configuration for debugging
#-------------------------------------------------------------
# enable_ssh_access = false
# ssh_key_name = "your-ssh-key-pair-name"
#-------------------------------------------------------------
# Streaming and recording settings
#-------------------------------------------------------------
# Enables streaming and recording capability
# enable_recording_streaming = false
# Directory where recorded files will be placed
# recorded_stream_dir = "/var/www/html/recordings"
# Records all streams if set to true
# record_all_streaming = false
# Stream keys and RTMP URLs
# Facebook
# facebook_stream_key = "your-facebook-stream-key"
# YouTube
# youtube_stream_key = "your-youtube-stream-key"
# Twitch
# twitch_ingest_endpoint="rtmp://live-sin.twitch.tv/app"
# twitch_stream_key = "your-twitch-stream-key"
# Periscope/Twitter
# periscope_server_url = "rtmp://in.pscp.tv:80/x"
# periscope_stream_key = "your-periscope-stream-key"
# Generic RTMP URLs
# rtmp_stream_urls = ["rtmp://generic-url/live/key", "rtmp://generic-domain.net/app"]