mirror of https://github.com/OpenVidu/openvidu.git
openvidu-deployment: Check secret in cloudformation yml
parent
21d606cd14
commit
40b0c524f0
|
@ -46,9 +46,9 @@ Parameters:
|
|||
OpenViduSecret:
|
||||
Description: "Secret to connect to this OpenVidu Platform. No whitespaces or quotations allowed"
|
||||
Type: String
|
||||
AllowedPattern: ^((?!")(?! ).)+$
|
||||
AllowedPattern: ^[a-zA-Z0-9_-]+$
|
||||
NoEcho: true
|
||||
ConstraintDescription: OpenVidu Secret is mandatory
|
||||
ConstraintDescription: "Cannot be empty and must contain only alphanumeric characters [a-zA-Z0-9], hypens ('-') and underscores ('_')"
|
||||
|
||||
# EC2 Instance configuration
|
||||
|
||||
|
|
|
@ -70,9 +70,9 @@ Parameters:
|
|||
OpenViduSecret:
|
||||
Description: "Secret to connect to this OpenVidu Platform. No whitespaces or quotations allowed"
|
||||
Type: String
|
||||
AllowedPattern: ^((?!")(?! ).)+$
|
||||
AllowedPattern: ^[a-zA-Z0-9_-]+$
|
||||
NoEcho: true
|
||||
ConstraintDescription: OpenVidu Secret is mandatory (no whitespaces or quotations allowed)
|
||||
ConstraintDescription: "Cannot be empty and must contain only alphanumeric characters [a-zA-Z0-9], hypens ('-') and underscores ('_')"
|
||||
|
||||
MediaNodesStartNumber:
|
||||
Description: "How many Media Nodes do you want on startup (EC2 instances will be launched)"
|
||||
|
|
Loading…
Reference in New Issue