This interface defines the deployment restrictions for a Wacht deployment.
export interface DeploymentRestrictions {
    allowed_email_domains?: string[];
    blocked_email_domains?: string[];
    allowed_countries?: string[];
    blocked_countries?: string[];
    ip_whitelist?: string[];
    ip_blacklist?: string[];
}

Properties

  • allowed_email_domains (string[], optional): List of email domains allowed to sign up.
  • blocked_email_domains (string[], optional): List of email domains blocked from signing up.
  • allowed_countries (string[], optional): List of countries allowed to access the deployment.
  • blocked_countries (string[], optional): List of countries blocked from accessing the deployment.
  • ip_whitelist (string[], optional): List of IP addresses allowed to access the deployment.
  • ip_blacklist (string[], optional): List of IP addresses blocked from accessing the deployment.