2020-03-25 12:42:26 +01:00
|
|
|
# OpenVidu configuration
|
|
|
|
# ----------------------
|
2020-04-21 19:47:21 +02:00
|
|
|
# Documentation: https://docs.openvidu.io/en/stable/reference-docs/openvidu-config/
|
2020-03-24 17:18:37 +01:00
|
|
|
|
2020-04-06 11:59:05 +02:00
|
|
|
# NOTE: This file doesn't need to quote assignment values, like most shells do.
|
|
|
|
# All values are stored as-is, even if they contain spaces, so don't quote them.
|
|
|
|
|
|
|
|
# Domain name. If you do not have one, the public IP of the machine.
|
|
|
|
# For example: 198.51.100.1, or openvidu.example.com
|
2020-05-04 17:10:11 +02:00
|
|
|
DOMAIN_OR_PUBLIC_IP=
|
2020-03-24 17:18:37 +01:00
|
|
|
|
2020-07-16 20:09:48 +02:00
|
|
|
# OpenVidu PRO License
|
|
|
|
OPENVIDU_PRO_LICENSE=
|
|
|
|
|
2020-04-10 01:41:33 +02:00
|
|
|
# OpenVidu SECRET used for apps to connect to OpenVidu server and users to access to OpenVidu Dashboard
|
|
|
|
OPENVIDU_SECRET=
|
|
|
|
|
|
|
|
# Certificate type:
|
|
|
|
# - selfsigned: Self signed certificate. Not recommended for production use.
|
|
|
|
# Users will see an ERROR when connected to web page.
|
|
|
|
# - owncert: Valid certificate purchased in a Internet services company.
|
2020-04-14 14:27:36 +02:00
|
|
|
# Please put the certificates files inside folder ./owncert
|
|
|
|
# with names certificate.key and certificate.cert
|
2020-04-10 01:41:33 +02:00
|
|
|
# - letsencrypt: Generate a new certificate using letsencrypt. Please set the
|
|
|
|
# required contact email for Let's Encrypt in LETSENCRYPT_EMAIL
|
|
|
|
# variable.
|
|
|
|
CERTIFICATE_TYPE=selfsigned
|
|
|
|
|
2020-04-14 14:05:01 +02:00
|
|
|
# If CERTIFICATE_TYPE=letsencrypt, you need to configure a valid email for notifications
|
2020-04-10 01:41:33 +02:00
|
|
|
LETSENCRYPT_EMAIL=user@example.com
|
|
|
|
|
2020-04-28 15:53:56 +02:00
|
|
|
# Proxy configuration
|
|
|
|
# If you want to change the ports on which openvidu listens, uncomment the following lines
|
|
|
|
|
2020-05-18 11:38:12 +02:00
|
|
|
# Allows any request to http://DOMAIN_OR_PUBLIC_IP:HTTP_PORT/ to be automatically
|
|
|
|
# redirected to https://DOMAIN_OR_PUBLIC_IP:HTTPS_PORT/.
|
|
|
|
# WARNING: the default port 80 cannot be changed during the first boot
|
2020-04-29 10:24:38 +02:00
|
|
|
# if you have chosen to deploy with the option CERTIFICATE_TYPE=letsencrypt
|
2020-04-29 11:12:10 +02:00
|
|
|
# HTTP_PORT=80
|
2020-04-28 15:53:56 +02:00
|
|
|
|
2020-05-18 11:38:12 +02:00
|
|
|
# Changes the port of all services exposed by OpenVidu.
|
2020-04-29 10:24:38 +02:00
|
|
|
# SDKs, REST clients and browsers will have to connect to this port
|
2020-04-29 11:12:10 +02:00
|
|
|
# HTTPS_PORT=443
|
2020-04-28 15:53:56 +02:00
|
|
|
|
2020-11-01 21:03:12 +01:00
|
|
|
# If true request to with www will be redirected to non-www requests
|
2020-11-02 19:46:59 +01:00
|
|
|
# Default value is false
|
2020-11-01 21:03:12 +01:00
|
|
|
# REDIRECT_WWW=false
|
|
|
|
|
2020-11-02 19:46:59 +01:00
|
|
|
# How many workers to configure in nginx proxy.
|
|
|
|
# The more workers, the more requests will be handled
|
|
|
|
# Default value is 10240
|
|
|
|
# WORKER_CONNECTIONS=10240
|
|
|
|
|
2020-04-30 11:02:50 +02:00
|
|
|
# Access restrictions
|
2020-04-30 14:27:40 +02:00
|
|
|
# In this section you will be able to restrict the IPs from which you can access to
|
2020-04-30 11:02:50 +02:00
|
|
|
# Openvidu API and the Administration Panel
|
2020-04-30 14:27:40 +02:00
|
|
|
# WARNING! If you touch this configuration you can lose access to the platform from some IPs.
|
|
|
|
# Use it carefully.
|
|
|
|
|
2020-05-18 11:38:12 +02:00
|
|
|
# This section limits access to the /dashboard (OpenVidu CE) and /inspector (OpenVidu Pro) pages.
|
2020-04-30 14:27:40 +02:00
|
|
|
# The form for a single IP or an IP range is:
|
|
|
|
# ALLOWED_ACCESS_TO_DASHBOARD=198.51.100.1 and ALLOWED_ACCESS_TO_DASHBOARD=198.51.100.0/24
|
|
|
|
# To limit multiple IPs or IP ranges, separate by commas like this:
|
|
|
|
# ALLOWED_ACCESS_TO_DASHBOARD=198.51.100.1, 198.51.100.0/24
|
2020-04-30 11:02:50 +02:00
|
|
|
# ALLOWED_ACCESS_TO_DASHBOARD=
|
|
|
|
|
2020-04-30 14:27:40 +02:00
|
|
|
# This section limits access to the Openvidu REST API.
|
|
|
|
# The form for a single IP or an IP range is:
|
|
|
|
# ALLOWED_ACCESS_TO_RESTAPI=198.51.100.1 and ALLOWED_ACCESS_TO_RESTAPI=198.51.100.0/24
|
|
|
|
# To limit multiple IPs or or IP ranges, separate by commas like this:
|
|
|
|
# ALLOWED_ACCESS_TO_RESTAPI=198.51.100.1, 198.51.100.0/24
|
2020-04-30 11:02:50 +02:00
|
|
|
# ALLOWED_ACCESS_TO_RESTAPI=
|
|
|
|
|
2020-07-16 20:09:48 +02:00
|
|
|
# Mode of cluster management. Can be auto (OpenVidu manages Media Nodes on its own.
|
|
|
|
# Parameter KMS_URIS is ignored) or manual (user must manage Media Nodes. Parameter
|
|
|
|
# KMS_URIS is used: if any uri is provided it must be valid)
|
|
|
|
OPENVIDU_PRO_CLUSTER_MODE=manual
|
|
|
|
|
|
|
|
# Which environment are you using
|
|
|
|
# Possibles values: aws, on_premise
|
|
|
|
OPENVIDU_PRO_CLUSTER_ENVIRONMENT=on_premise
|
|
|
|
|
2020-10-06 00:40:01 +02:00
|
|
|
# Unique identifier of your cluster. Each OpenVidu Server Pro instance corresponds to one cluster.
|
|
|
|
# You can launch as many clusters as you want with your license key.
|
|
|
|
# Cluster ID will always be stored to disk so restarting OpenVidu Server Pro will keep the same previous cluster ID
|
|
|
|
# if this configuration parameter is not given a distinct value.
|
|
|
|
# OPENVIDU_PRO_CLUSTER_ID=
|
|
|
|
|
2020-07-16 20:09:48 +02:00
|
|
|
# The desired number of Media Nodes on startup. First the autodiscovery process is performed.
|
|
|
|
# If there are too many Media Nodes after that, they will be dropped until this number is reached.
|
|
|
|
# If there are not enough, more will be launched.
|
|
|
|
# This only takes place if OPENVIDU_PRO_CLUSTER_MODE is set to auto
|
|
|
|
# If set to zero no media servers will be lauched.
|
|
|
|
# Type: number >= 0
|
|
|
|
#OPENVIDU_PRO_CLUSTER_MEDIA_NODES=
|
|
|
|
|
|
|
|
# How often each running Media Node will send OpenVidu Server Pro Node load metrics, in seconds.
|
|
|
|
# This property is only used when OPENVIDU_PRO_CLUSTER_LOAD_STRATEGY is 'cpu'. Other load strategies
|
|
|
|
# gather information synchronously when required
|
|
|
|
# Type: number >= 0
|
|
|
|
# OPENVIDU_PRO_CLUSTER_LOAD_INTERVAL=
|
|
|
|
|
|
|
|
# Whether to enable or disable autoscaling. With autoscaling the number of Media Nodes will
|
|
|
|
# be automatically adjusted according to existing load
|
|
|
|
# Values: true | false
|
|
|
|
OPENVIDU_PRO_CLUSTER_AUTOSCALING=false
|
|
|
|
|
|
|
|
# How often the autoscaling algorithm runs, in seconds
|
|
|
|
# Type number >= 0
|
|
|
|
# OPENVIDU_PRO_CLUSTER_AUTOSCALING_INTERVAL=
|
|
|
|
|
|
|
|
# If autoscaling is enabled, the upper limit of Media Nodes that can be reached.
|
|
|
|
# Even when the average load exceeds the threshold, no more Media Nodes will be added to cluster
|
|
|
|
# Type number >= 0
|
|
|
|
# OPENVIDU_PRO_CLUSTER_AUTOSCALING_MAX_NODES=
|
|
|
|
|
|
|
|
# If autoscaling is enabled, the lower limit of Media Nodes that can be reached.
|
|
|
|
# Even when the average load is inferior to the threshold, no more Media Nodes will
|
|
|
|
# be removed from the cluster
|
|
|
|
# OPENVIDU_PRO_CLUSTER_AUTOSCALING_MIN_NODES=
|
|
|
|
|
|
|
|
# If autoscaling is enabled, the upper average load threshold that will trigger the addition
|
|
|
|
# of a new Media Node.
|
|
|
|
# Percentage value (0 min, 100 max)
|
|
|
|
# OPENVIDU_PRO_CLUSTER_AUTOSCALING_MAX_LOAD=
|
|
|
|
|
|
|
|
# If autoscaling is enabled, the lower average load threshold that will trigger the removal
|
|
|
|
# of an existing Media Node.
|
|
|
|
# Percentage value (0 min, 100 max)
|
|
|
|
# OPENVIDU_PRO_CLUSTER_AUTOSCALING_MIN_LOAD=
|
|
|
|
|
|
|
|
# What parameter should be used to distribute the creation of new sessions
|
|
|
|
# (and therefore distribution of load) among all available Media Nodes
|
|
|
|
OPENVIDU_PRO_CLUSTER_LOAD_STRATEGY=streams
|
|
|
|
|
|
|
|
# Max days until delete indexes in state of rollover on Elasticsearch
|
|
|
|
# Type number >= 0
|
2020-11-05 18:08:20 +01:00
|
|
|
# Default Value is 15
|
2020-07-16 20:09:48 +02:00
|
|
|
# OPENVIDU_PRO_ELASTICSEARCH_MAX_DAYS_DELETE=
|
|
|
|
|
|
|
|
# Private IP of OpenVidu Server Pro
|
|
|
|
# For example 192.168.1.101
|
|
|
|
# OPENVIDU_PRO_PRIVATE_IP=
|
|
|
|
|
2020-10-06 21:13:18 +02:00
|
|
|
# Where to store recording files. Can be “local” (local storage) or “s3” (AWS bucket).
|
|
|
|
# You will need to define a OPENVIDU_PRO_AWS_S3_BUCKET if you use it.
|
|
|
|
#OPENVIDU_PRO_RECORDING_STORAGE=
|
|
|
|
|
|
|
|
# S3 Bucket where to store recording files. May include paths to allow navigating
|
|
|
|
# folder structures inside the bucket. This property is only taken into account
|
|
|
|
# if OPENVIDU_PRO_RECORDING_STORAGE=s3
|
|
|
|
#OPENVIDU_PRO_AWS_S3_BUCKET=
|
|
|
|
|
|
|
|
# If you're instance has a role which has access to read
|
|
|
|
# and write into the s3 bucket, you don't need this parameter
|
|
|
|
# OPENVIDU_PRO_AWS_ACCESS_KEY=
|
|
|
|
|
|
|
|
# AWS credentials secret key from OPENVIDU_PRO_AWS_ACCESS_KEY. This property is only
|
|
|
|
# taken into account if OPENVIDU_PRO_RECORDING_STORAGE=s3
|
|
|
|
# If you're instance has a role which has access to read
|
|
|
|
# and write into the s3 bucket, you don't need this parameter
|
|
|
|
# OPENVIDU_PRO_AWS_SECRET_KEY=
|
|
|
|
|
|
|
|
# AWS region in which the S3 bucket is located (e.g. eu-west-1). If not provided,
|
|
|
|
# the region will try to be discovered automatically, although this is not always possible.
|
|
|
|
# This property is only taken into account if OPENVIDU_PRO_RECORDING_STORAGE=s3
|
|
|
|
# OPENVIDU_PRO_AWS_REGION=
|
|
|
|
|
2020-10-07 21:08:14 +02:00
|
|
|
# Whether to enable recording module or not
|
|
|
|
OPENVIDU_RECORDING=false
|
|
|
|
|
|
|
|
# Use recording module with debug mode.
|
|
|
|
OPENVIDU_RECORDING_DEBUG=false
|
|
|
|
|
2020-04-06 11:59:05 +02:00
|
|
|
# Openvidu Folder Record used for save the openvidu recording videos. Change it
|
2020-03-26 15:11:08 +01:00
|
|
|
# with the folder you want to use from your host.
|
2020-04-08 15:47:25 +02:00
|
|
|
OPENVIDU_RECORDING_PATH=/opt/openvidu/recordings
|
|
|
|
|
2020-04-16 10:41:32 +02:00
|
|
|
# System path where OpenVidu Server should look for custom recording layouts
|
|
|
|
OPENVIDU_RECORDING_CUSTOM_LAYOUT=/opt/openvidu/custom-layout
|
|
|
|
|
2020-04-08 15:47:25 +02:00
|
|
|
# if true any client can connect to
|
|
|
|
# https://OPENVIDU_SERVER_IP:OPENVIDU_PORT/recordings/any_session_file.mp4
|
|
|
|
# and access any recorded video file. If false this path will be secured with
|
2020-04-17 18:45:46 +02:00
|
|
|
# OPENVIDU_SECRET param just as OpenVidu Server dashboard at
|
2020-04-08 15:47:25 +02:00
|
|
|
# https://OPENVIDU_SERVER_IP:OPENVIDU_PORT
|
|
|
|
# Values: true | false
|
2020-04-16 10:41:32 +02:00
|
|
|
OPENVIDU_RECORDING_PUBLIC_ACCESS=false
|
2020-04-08 15:47:25 +02:00
|
|
|
|
|
|
|
# Which users should receive the recording events in the client side
|
|
|
|
# (recordingStarted, recordingStopped). Can be all (every user connected to
|
|
|
|
# the session), publisher_moderator (users with role 'PUBLISHER' or
|
|
|
|
# 'MODERATOR'), moderator (only users with role 'MODERATOR') or none
|
|
|
|
# (no user will receive these events)
|
|
|
|
OPENVIDU_RECORDING_NOTIFICATION=publisher_moderator
|
|
|
|
|
|
|
|
# Timeout in seconds for recordings to automatically stop (and the session involved to be closed)
|
|
|
|
# when conditions are met: a session recording is started but no user is publishing to it or a session
|
|
|
|
# is being recorded and last user disconnects. If a user publishes within the timeout in either case,
|
|
|
|
# the automatic stop of the recording is cancelled
|
|
|
|
# 0 means no timeout
|
2020-04-16 10:41:32 +02:00
|
|
|
OPENVIDU_RECORDING_AUTOSTOP_TIMEOUT=120
|
2020-04-08 15:47:25 +02:00
|
|
|
|
|
|
|
# Maximum video bandwidth sent from clients to OpenVidu Server, in kbps.
|
|
|
|
# 0 means unconstrained
|
2020-04-16 10:41:32 +02:00
|
|
|
OPENVIDU_STREAMS_VIDEO_MAX_RECV_BANDWIDTH=1000
|
2020-04-08 15:47:25 +02:00
|
|
|
|
|
|
|
# Minimum video bandwidth sent from clients to OpenVidu Server, in kbps.
|
|
|
|
# 0 means unconstrained
|
2020-04-16 10:41:32 +02:00
|
|
|
OPENVIDU_STREAMS_VIDEO_MIN_RECV_BANDWIDTH=300
|
2020-04-08 15:47:25 +02:00
|
|
|
|
|
|
|
# Maximum video bandwidth sent from OpenVidu Server to clients, in kbps.
|
|
|
|
# 0 means unconstrained
|
2020-04-16 10:41:32 +02:00
|
|
|
OPENVIDU_STREAMS_VIDEO_MAX_SEND_BANDWIDTH=1000
|
2020-04-08 15:47:25 +02:00
|
|
|
|
|
|
|
# Minimum video bandwidth sent from OpenVidu Server to clients, in kbps.
|
|
|
|
# 0 means unconstrained
|
2020-04-16 10:41:32 +02:00
|
|
|
OPENVIDU_STREAMS_VIDEO_MIN_SEND_BANDWIDTH=300
|
2020-04-08 15:47:25 +02:00
|
|
|
|
2020-04-21 20:14:02 +02:00
|
|
|
# true to enable OpenVidu Webhook service. false' otherwise
|
2020-04-08 15:47:25 +02:00
|
|
|
# Values: true | false
|
|
|
|
OPENVIDU_WEBHOOK=false
|
|
|
|
|
|
|
|
# HTTP endpoint where OpenVidu Server will send Webhook HTTP POST messages
|
|
|
|
# Must be a valid URL: http(s)://ENDPOINT
|
|
|
|
#OPENVIDU_WEBHOOK_ENDPOINT=
|
|
|
|
|
2020-04-21 20:14:02 +02:00
|
|
|
# List of headers that OpenVidu Webhook service will attach to HTTP POST messages
|
2020-04-08 15:47:25 +02:00
|
|
|
#OPENVIDU_WEBHOOK_HEADERS=
|
|
|
|
|
2020-04-21 20:14:02 +02:00
|
|
|
# List of events that will be sent by OpenVidu Webhook service
|
2020-08-17 13:42:15 +02:00
|
|
|
# Default value is all available events
|
2020-04-08 15:47:25 +02:00
|
|
|
OPENVIDU_WEBHOOK_EVENTS=[sessionCreated,sessionDestroyed,participantJoined,participantLeft,webrtcConnectionCreated,webrtcConnectionDestroyed,recordingStatusChanged,filterEventDispatched,mediaNodeStatusChanged]
|
|
|
|
|
2020-04-08 18:30:30 +02:00
|
|
|
# How often the garbage collector of non active sessions runs.
|
|
|
|
# This helps cleaning up sessions that have been initialized through
|
|
|
|
# REST API (and maybe tokens have been created for them) but have had no users connected.
|
2020-04-08 15:47:25 +02:00
|
|
|
# Default to 900s (15 mins). 0 to disable non active sessions garbage collector
|
|
|
|
OPENVIDU_SESSIONS_GARBAGE_INTERVAL=900
|
|
|
|
|
2020-04-08 18:30:30 +02:00
|
|
|
# Minimum time in seconds that a non active session must have been in existence
|
|
|
|
# for the garbage collector of non active sessions to remove it. Default to 3600s (1 hour).
|
|
|
|
# If non active sessions garbage collector is disabled
|
2020-04-17 18:45:46 +02:00
|
|
|
# (property 'OPENVIDU_SESSIONS_GARBAGE_INTERVAL' to 0) this property is ignored
|
2020-04-08 15:47:25 +02:00
|
|
|
OPENVIDU_SESSIONS_GARBAGE_THRESHOLD=3600
|
|
|
|
|
|
|
|
# Call Detail Record enabled
|
|
|
|
# Whether to enable Call Detail Record or not
|
|
|
|
# Values: true | false
|
|
|
|
OPENVIDU_CDR=false
|
2020-03-25 12:42:26 +01:00
|
|
|
|
2020-04-18 19:05:52 +02:00
|
|
|
# Path where the cdr log files are hosted
|
|
|
|
OPENVIDU_CDR_PATH=/opt/openvidu/cdr
|
2020-04-16 10:41:32 +02:00
|
|
|
|
2020-03-27 16:46:32 +01:00
|
|
|
# Openvidu Server Level logs
|
|
|
|
# --------------------------
|
|
|
|
# Uncomment the next line and define this variable to change
|
|
|
|
# the verbosity level of the logs of Openvidu Service
|
|
|
|
# RECOMENDED VALUES: INFO for normal logs DEBUG for more verbose logs
|
2020-04-06 11:59:05 +02:00
|
|
|
# OV_CE_DEBUG_LEVEL=INFO
|
2020-04-13 14:19:38 +02:00
|
|
|
|
2020-11-05 16:30:34 +01:00
|
|
|
# OpenVidu Java Options
|
2020-04-13 14:19:38 +02:00
|
|
|
# --------------------------
|
2020-07-16 20:09:48 +02:00
|
|
|
# Uncomment the next line and define this to add options to java command
|
2020-04-13 14:19:38 +02:00
|
|
|
# Documentation: https://docs.oracle.com/cd/E37116_01/install.111210/e23737/configuring_jvm.htm#OUDIG00058
|
2020-07-16 20:09:48 +02:00
|
|
|
# JAVA_OPTIONS=-Xms2048m -Xmx4096m
|
|
|
|
|
2020-11-05 16:30:34 +01:00
|
|
|
# ElasticSearch Java Options
|
|
|
|
# --------------------------
|
|
|
|
# Uncomment the next line and define this to add options to java command of Elasticsearch
|
|
|
|
# Documentation: https://docs.oracle.com/cd/E37116_01/install.111210/e23737/configuring_jvm.htm#OUDIG00058
|
|
|
|
# By default ElasticSearch is configured to use "-Xms2g -Xmx2g" as Java Min and Max memory heap allocation
|
|
|
|
# ES_JAVA_OPTS=-Xms2048m -Xmx4096m
|
|
|
|
|
2020-07-16 20:09:48 +02:00
|
|
|
# Kibana And ElasticSearch Configuration
|
|
|
|
# --------------------------
|
2020-09-22 19:04:50 +02:00
|
|
|
# Kibana And ElasticSearch Basic Auth configuration (Credentials)
|
2020-09-22 18:19:51 +02:00
|
|
|
# This credentials will aso be valid for Kibana dashboard
|
|
|
|
ELASTICSEARCH_USERNAME=elasticadmin
|
|
|
|
ELASTICSEARCH_PASSWORD=
|
2020-07-16 20:09:48 +02:00
|
|
|
|
2020-11-03 16:33:35 +01:00
|
|
|
# Media Node Configuration
|
|
|
|
# --------------------------
|
|
|
|
# You can add any KMS environment variable as described in the
|
|
|
|
# documentation of the docker image: https://hub.docker.com/r/kurento/kurento-media-server
|
|
|
|
# If you want to add an environment variable to KMS, you must add a variable using this prefix: 'KMS_DOCKER_ENV_',
|
|
|
|
# followed by the environment variable you want to setup.
|
|
|
|
# For example if you want to setup KMS_MIN_PORT to 50000, it would be KMS_DOCKER_ENV_KMS_MIN_PORT=50000
|
|
|
|
|
|
|
|
# Docker hub kurento media server: https://hub.docker.com/r/kurento/kurento-media-server
|
|
|
|
# Uncomment the next line and define this variable with KMS image that you want use
|
|
|
|
# By default, KMS_IMAGE is defined in media nodes and it does not need to be specified unless
|
2020-11-03 16:54:13 +01:00
|
|
|
# you want to use a specific version of KMS
|
2020-11-04 18:59:54 +01:00
|
|
|
# KMS_IMAGE=kurento/kurento-media-server:6.15.0
|
2020-11-03 16:33:35 +01:00
|
|
|
|
|
|
|
# Uncomment the next line and define this variable to change
|
|
|
|
# the verbosity level of the logs of KMS
|
|
|
|
# Documentation: https://doc-kurento.readthedocs.io/en/stable/features/logging.html
|
2020-11-03 17:26:32 +01:00
|
|
|
# KMS_DOCKER_ENV_GST_DEBUG=
|
2020-11-03 16:33:35 +01:00
|
|
|
|
2020-07-16 20:09:48 +02:00
|
|
|
# Cloudformation configuration
|
|
|
|
# --------------------------
|
|
|
|
# If you're working outside AWS ignore this section
|
|
|
|
#AWS_DEFAULT_REGION=
|
|
|
|
#AWS_IMAGE_ID=
|
|
|
|
#AWS_INSTANCE_TYPE=
|
|
|
|
#AWS_KEY_NAME=
|
|
|
|
#AWS_SUBNET_ID=
|
|
|
|
#AWS_SECURITY_GROUP=
|
|
|
|
#AWS_STACK_ID=
|
|
|
|
#AWS_STACK_NAME=
|