Module config

This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-auth0 repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-auth0 repo.

APIs

APIs

let clientId

let clientId: string | undefined =  __config.get("clientId") || utilities.getEnv("AUTH0_CLIENT_ID");

let clientSecret

let clientSecret: string | undefined =  __config.get("clientSecret") || utilities.getEnv("AUTH0_CLIENT_SECRET");

let debug

let debug: boolean | undefined =  __config.getObject<boolean>("debug") || utilities.getEnvBoolean("AUTH0_DEBUG");

let domain

let domain: string | undefined =  __config.get("domain") || utilities.getEnv("AUTH0_DOMAIN");