auth0.EmailProvider
Explore with Pulumi AI
With Auth0, you can have standard welcome, password reset, and account verification email-based workflows built right into Auth0. This resource allows you to configure email providers, so you can route all emails that are part of Auth0’s authentication workflows through the supported high-volume email service of your choice.
Create EmailProvider Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EmailProvider(name: string, args: EmailProviderArgs, opts?: CustomResourceOptions);
@overload
def EmailProvider(resource_name: str,
args: EmailProviderArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EmailProvider(resource_name: str,
opts: Optional[ResourceOptions] = None,
credentials: Optional[EmailProviderCredentialsArgs] = None,
default_from_address: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
settings: Optional[EmailProviderSettingsArgs] = None)
func NewEmailProvider(ctx *Context, name string, args EmailProviderArgs, opts ...ResourceOption) (*EmailProvider, error)
public EmailProvider(string name, EmailProviderArgs args, CustomResourceOptions? opts = null)
public EmailProvider(String name, EmailProviderArgs args)
public EmailProvider(String name, EmailProviderArgs args, CustomResourceOptions options)
type: auth0:EmailProvider
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EmailProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EmailProviderArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EmailProviderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EmailProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EmailProviderArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var emailProviderResource = new Auth0.EmailProvider("emailProviderResource", new()
{
Credentials = new Auth0.Inputs.EmailProviderCredentialsArgs
{
AccessKeyId = "string",
ApiKey = "string",
AzureCsConnectionString = "string",
Domain = "string",
Ms365ClientId = "string",
Ms365ClientSecret = "string",
Ms365TenantId = "string",
Region = "string",
SecretAccessKey = "string",
SmtpHost = "string",
SmtpPass = "string",
SmtpPort = 0,
SmtpUser = "string",
},
DefaultFromAddress = "string",
Enabled = false,
Name = "string",
Settings = new Auth0.Inputs.EmailProviderSettingsArgs
{
Headers = new Auth0.Inputs.EmailProviderSettingsHeadersArgs
{
XMcViewContentLink = "string",
XSesConfigurationSet = "string",
},
Message = new Auth0.Inputs.EmailProviderSettingsMessageArgs
{
ConfigurationSetName = "string",
ViewContentLink = false,
},
},
});
example, err := auth0.NewEmailProvider(ctx, "emailProviderResource", &auth0.EmailProviderArgs{
Credentials: &auth0.EmailProviderCredentialsArgs{
AccessKeyId: pulumi.String("string"),
ApiKey: pulumi.String("string"),
AzureCsConnectionString: pulumi.String("string"),
Domain: pulumi.String("string"),
Ms365ClientId: pulumi.String("string"),
Ms365ClientSecret: pulumi.String("string"),
Ms365TenantId: pulumi.String("string"),
Region: pulumi.String("string"),
SecretAccessKey: pulumi.String("string"),
SmtpHost: pulumi.String("string"),
SmtpPass: pulumi.String("string"),
SmtpPort: pulumi.Int(0),
SmtpUser: pulumi.String("string"),
},
DefaultFromAddress: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Name: pulumi.String("string"),
Settings: &auth0.EmailProviderSettingsArgs{
Headers: &auth0.EmailProviderSettingsHeadersArgs{
XMcViewContentLink: pulumi.String("string"),
XSesConfigurationSet: pulumi.String("string"),
},
Message: &auth0.EmailProviderSettingsMessageArgs{
ConfigurationSetName: pulumi.String("string"),
ViewContentLink: pulumi.Bool(false),
},
},
})
var emailProviderResource = new EmailProvider("emailProviderResource", EmailProviderArgs.builder()
.credentials(EmailProviderCredentialsArgs.builder()
.accessKeyId("string")
.apiKey("string")
.azureCsConnectionString("string")
.domain("string")
.ms365ClientId("string")
.ms365ClientSecret("string")
.ms365TenantId("string")
.region("string")
.secretAccessKey("string")
.smtpHost("string")
.smtpPass("string")
.smtpPort(0)
.smtpUser("string")
.build())
.defaultFromAddress("string")
.enabled(false)
.name("string")
.settings(EmailProviderSettingsArgs.builder()
.headers(EmailProviderSettingsHeadersArgs.builder()
.xMcViewContentLink("string")
.xSesConfigurationSet("string")
.build())
.message(EmailProviderSettingsMessageArgs.builder()
.configurationSetName("string")
.viewContentLink(false)
.build())
.build())
.build());
email_provider_resource = auth0.EmailProvider("emailProviderResource",
credentials=auth0.EmailProviderCredentialsArgs(
access_key_id="string",
api_key="string",
azure_cs_connection_string="string",
domain="string",
ms365_client_id="string",
ms365_client_secret="string",
ms365_tenant_id="string",
region="string",
secret_access_key="string",
smtp_host="string",
smtp_pass="string",
smtp_port=0,
smtp_user="string",
),
default_from_address="string",
enabled=False,
name="string",
settings=auth0.EmailProviderSettingsArgs(
headers=auth0.EmailProviderSettingsHeadersArgs(
x_mc_view_content_link="string",
x_ses_configuration_set="string",
),
message=auth0.EmailProviderSettingsMessageArgs(
configuration_set_name="string",
view_content_link=False,
),
))
const emailProviderResource = new auth0.EmailProvider("emailProviderResource", {
credentials: {
accessKeyId: "string",
apiKey: "string",
azureCsConnectionString: "string",
domain: "string",
ms365ClientId: "string",
ms365ClientSecret: "string",
ms365TenantId: "string",
region: "string",
secretAccessKey: "string",
smtpHost: "string",
smtpPass: "string",
smtpPort: 0,
smtpUser: "string",
},
defaultFromAddress: "string",
enabled: false,
name: "string",
settings: {
headers: {
xMcViewContentLink: "string",
xSesConfigurationSet: "string",
},
message: {
configurationSetName: "string",
viewContentLink: false,
},
},
});
type: auth0:EmailProvider
properties:
credentials:
accessKeyId: string
apiKey: string
azureCsConnectionString: string
domain: string
ms365ClientId: string
ms365ClientSecret: string
ms365TenantId: string
region: string
secretAccessKey: string
smtpHost: string
smtpPass: string
smtpPort: 0
smtpUser: string
defaultFromAddress: string
enabled: false
name: string
settings:
headers:
xMcViewContentLink: string
xSesConfigurationSet: string
message:
configurationSetName: string
viewContentLink: false
EmailProvider Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The EmailProvider resource accepts the following input properties:
- Credentials
Email
Provider Credentials - Configuration settings for the credentials for the email provider.
- Default
From stringAddress - Email address to use as the sender when no other "from" address is specified.
- Enabled bool
- Indicates whether the email provider is enabled.
- Name string
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - Settings
Email
Provider Settings - Specific email provider settings.
- Credentials
Email
Provider Credentials Args - Configuration settings for the credentials for the email provider.
- Default
From stringAddress - Email address to use as the sender when no other "from" address is specified.
- Enabled bool
- Indicates whether the email provider is enabled.
- Name string
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - Settings
Email
Provider Settings Args - Specific email provider settings.
- credentials
Email
Provider Credentials - Configuration settings for the credentials for the email provider.
- default
From StringAddress - Email address to use as the sender when no other "from" address is specified.
- enabled Boolean
- Indicates whether the email provider is enabled.
- name String
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - settings
Email
Provider Settings - Specific email provider settings.
- credentials
Email
Provider Credentials - Configuration settings for the credentials for the email provider.
- default
From stringAddress - Email address to use as the sender when no other "from" address is specified.
- enabled boolean
- Indicates whether the email provider is enabled.
- name string
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - settings
Email
Provider Settings - Specific email provider settings.
- credentials
Email
Provider Credentials Args - Configuration settings for the credentials for the email provider.
- default_
from_ straddress - Email address to use as the sender when no other "from" address is specified.
- enabled bool
- Indicates whether the email provider is enabled.
- name str
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - settings
Email
Provider Settings Args - Specific email provider settings.
- credentials Property Map
- Configuration settings for the credentials for the email provider.
- default
From StringAddress - Email address to use as the sender when no other "from" address is specified.
- enabled Boolean
- Indicates whether the email provider is enabled.
- name String
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - settings Property Map
- Specific email provider settings.
Outputs
All input properties are implicitly available as output properties. Additionally, the EmailProvider resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing EmailProvider Resource
Get an existing EmailProvider resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EmailProviderState, opts?: CustomResourceOptions): EmailProvider
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
credentials: Optional[EmailProviderCredentialsArgs] = None,
default_from_address: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
settings: Optional[EmailProviderSettingsArgs] = None) -> EmailProvider
func GetEmailProvider(ctx *Context, name string, id IDInput, state *EmailProviderState, opts ...ResourceOption) (*EmailProvider, error)
public static EmailProvider Get(string name, Input<string> id, EmailProviderState? state, CustomResourceOptions? opts = null)
public static EmailProvider get(String name, Output<String> id, EmailProviderState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Credentials
Email
Provider Credentials - Configuration settings for the credentials for the email provider.
- Default
From stringAddress - Email address to use as the sender when no other "from" address is specified.
- Enabled bool
- Indicates whether the email provider is enabled.
- Name string
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - Settings
Email
Provider Settings - Specific email provider settings.
- Credentials
Email
Provider Credentials Args - Configuration settings for the credentials for the email provider.
- Default
From stringAddress - Email address to use as the sender when no other "from" address is specified.
- Enabled bool
- Indicates whether the email provider is enabled.
- Name string
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - Settings
Email
Provider Settings Args - Specific email provider settings.
- credentials
Email
Provider Credentials - Configuration settings for the credentials for the email provider.
- default
From StringAddress - Email address to use as the sender when no other "from" address is specified.
- enabled Boolean
- Indicates whether the email provider is enabled.
- name String
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - settings
Email
Provider Settings - Specific email provider settings.
- credentials
Email
Provider Credentials - Configuration settings for the credentials for the email provider.
- default
From stringAddress - Email address to use as the sender when no other "from" address is specified.
- enabled boolean
- Indicates whether the email provider is enabled.
- name string
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - settings
Email
Provider Settings - Specific email provider settings.
- credentials
Email
Provider Credentials Args - Configuration settings for the credentials for the email provider.
- default_
from_ straddress - Email address to use as the sender when no other "from" address is specified.
- enabled bool
- Indicates whether the email provider is enabled.
- name str
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - settings
Email
Provider Settings Args - Specific email provider settings.
- credentials Property Map
- Configuration settings for the credentials for the email provider.
- default
From StringAddress - Email address to use as the sender when no other "from" address is specified.
- enabled Boolean
- Indicates whether the email provider is enabled.
- name String
- Name of the email provider. Options include
azure_cs
,mailgun
,mandrill
,ms365
,sendgrid
,ses
,smtp
andsparkpost
. - settings Property Map
- Specific email provider settings.
Supporting Types
EmailProviderCredentials, EmailProviderCredentialsArgs
- Access
Key stringId - AWS Access Key ID. Used only for AWS.
- Api
Key string - API Key for your email service. Will always be encrypted in our database.
- Azure
Cs stringConnection String - Azure Communication Services Connection String.
- Domain string
- Domain name.
- Ms365Client
Id string - Microsoft 365 Client ID.
- Ms365Client
Secret string - Microsoft 365 Client Secret.
- Ms365Tenant
Id string - Microsoft 365 Tenant ID.
- Region string
- Default region. Used only for AWS, Mailgun, and SparkPost.
- Secret
Access stringKey - AWS Secret Key. Will always be encrypted in our database. Used only for AWS.
- Smtp
Host string - Hostname or IP address of your SMTP server. Used only for SMTP.
- Smtp
Pass string - SMTP password. Used only for SMTP.
- Smtp
Port int - Port used by your SMTP server. Please avoid using port 25 if possible because many providers have limitations on this port. Used only for SMTP.
- Smtp
User string - SMTP username. Used only for SMTP.
- Access
Key stringId - AWS Access Key ID. Used only for AWS.
- Api
Key string - API Key for your email service. Will always be encrypted in our database.
- Azure
Cs stringConnection String - Azure Communication Services Connection String.
- Domain string
- Domain name.
- Ms365Client
Id string - Microsoft 365 Client ID.
- Ms365Client
Secret string - Microsoft 365 Client Secret.
- Ms365Tenant
Id string - Microsoft 365 Tenant ID.
- Region string
- Default region. Used only for AWS, Mailgun, and SparkPost.
- Secret
Access stringKey - AWS Secret Key. Will always be encrypted in our database. Used only for AWS.
- Smtp
Host string - Hostname or IP address of your SMTP server. Used only for SMTP.
- Smtp
Pass string - SMTP password. Used only for SMTP.
- Smtp
Port int - Port used by your SMTP server. Please avoid using port 25 if possible because many providers have limitations on this port. Used only for SMTP.
- Smtp
User string - SMTP username. Used only for SMTP.
- access
Key StringId - AWS Access Key ID. Used only for AWS.
- api
Key String - API Key for your email service. Will always be encrypted in our database.
- azure
Cs StringConnection String - Azure Communication Services Connection String.
- domain String
- Domain name.
- ms365Client
Id String - Microsoft 365 Client ID.
- ms365Client
Secret String - Microsoft 365 Client Secret.
- ms365Tenant
Id String - Microsoft 365 Tenant ID.
- region String
- Default region. Used only for AWS, Mailgun, and SparkPost.
- secret
Access StringKey - AWS Secret Key. Will always be encrypted in our database. Used only for AWS.
- smtp
Host String - Hostname or IP address of your SMTP server. Used only for SMTP.
- smtp
Pass String - SMTP password. Used only for SMTP.
- smtp
Port Integer - Port used by your SMTP server. Please avoid using port 25 if possible because many providers have limitations on this port. Used only for SMTP.
- smtp
User String - SMTP username. Used only for SMTP.
- access
Key stringId - AWS Access Key ID. Used only for AWS.
- api
Key string - API Key for your email service. Will always be encrypted in our database.
- azure
Cs stringConnection String - Azure Communication Services Connection String.
- domain string
- Domain name.
- ms365Client
Id string - Microsoft 365 Client ID.
- ms365Client
Secret string - Microsoft 365 Client Secret.
- ms365Tenant
Id string - Microsoft 365 Tenant ID.
- region string
- Default region. Used only for AWS, Mailgun, and SparkPost.
- secret
Access stringKey - AWS Secret Key. Will always be encrypted in our database. Used only for AWS.
- smtp
Host string - Hostname or IP address of your SMTP server. Used only for SMTP.
- smtp
Pass string - SMTP password. Used only for SMTP.
- smtp
Port number - Port used by your SMTP server. Please avoid using port 25 if possible because many providers have limitations on this port. Used only for SMTP.
- smtp
User string - SMTP username. Used only for SMTP.
- access_
key_ strid - AWS Access Key ID. Used only for AWS.
- api_
key str - API Key for your email service. Will always be encrypted in our database.
- azure_
cs_ strconnection_ string - Azure Communication Services Connection String.
- domain str
- Domain name.
- ms365_
client_ strid - Microsoft 365 Client ID.
- ms365_
client_ strsecret - Microsoft 365 Client Secret.
- ms365_
tenant_ strid - Microsoft 365 Tenant ID.
- region str
- Default region. Used only for AWS, Mailgun, and SparkPost.
- secret_
access_ strkey - AWS Secret Key. Will always be encrypted in our database. Used only for AWS.
- smtp_
host str - Hostname or IP address of your SMTP server. Used only for SMTP.
- smtp_
pass str - SMTP password. Used only for SMTP.
- smtp_
port int - Port used by your SMTP server. Please avoid using port 25 if possible because many providers have limitations on this port. Used only for SMTP.
- smtp_
user str - SMTP username. Used only for SMTP.
- access
Key StringId - AWS Access Key ID. Used only for AWS.
- api
Key String - API Key for your email service. Will always be encrypted in our database.
- azure
Cs StringConnection String - Azure Communication Services Connection String.
- domain String
- Domain name.
- ms365Client
Id String - Microsoft 365 Client ID.
- ms365Client
Secret String - Microsoft 365 Client Secret.
- ms365Tenant
Id String - Microsoft 365 Tenant ID.
- region String
- Default region. Used only for AWS, Mailgun, and SparkPost.
- secret
Access StringKey - AWS Secret Key. Will always be encrypted in our database. Used only for AWS.
- smtp
Host String - Hostname or IP address of your SMTP server. Used only for SMTP.
- smtp
Pass String - SMTP password. Used only for SMTP.
- smtp
Port Number - Port used by your SMTP server. Please avoid using port 25 if possible because many providers have limitations on this port. Used only for SMTP.
- smtp
User String - SMTP username. Used only for SMTP.
EmailProviderSettings, EmailProviderSettingsArgs
- Headers
Email
Provider Settings Headers - Headers settings for the
smtp
email provider. - Message
Email
Provider Settings Message - Message settings for the
mandrill
orses
email provider.
- Headers
Email
Provider Settings Headers - Headers settings for the
smtp
email provider. - Message
Email
Provider Settings Message - Message settings for the
mandrill
orses
email provider.
- headers
Email
Provider Settings Headers - Headers settings for the
smtp
email provider. - message
Email
Provider Settings Message - Message settings for the
mandrill
orses
email provider.
- headers
Email
Provider Settings Headers - Headers settings for the
smtp
email provider. - message
Email
Provider Settings Message - Message settings for the
mandrill
orses
email provider.
- headers
Email
Provider Settings Headers - Headers settings for the
smtp
email provider. - message
Email
Provider Settings Message - Message settings for the
mandrill
orses
email provider.
- headers Property Map
- Headers settings for the
smtp
email provider. - message Property Map
- Message settings for the
mandrill
orses
email provider.
EmailProviderSettingsHeaders, EmailProviderSettingsHeadersArgs
- XMc
View stringContent Link - Disable or enable the default View Content Link for sensitive emails.
- XSes
Configuration stringSet - SES Configuration set to include when sending emails.
- XMc
View stringContent Link - Disable or enable the default View Content Link for sensitive emails.
- XSes
Configuration stringSet - SES Configuration set to include when sending emails.
- x
Mc StringView Content Link - Disable or enable the default View Content Link for sensitive emails.
- x
Ses StringConfiguration Set - SES Configuration set to include when sending emails.
- x
Mc stringView Content Link - Disable or enable the default View Content Link for sensitive emails.
- x
Ses stringConfiguration Set - SES Configuration set to include when sending emails.
- x_
mc_ strview_ content_ link - Disable or enable the default View Content Link for sensitive emails.
- x_
ses_ strconfiguration_ set - SES Configuration set to include when sending emails.
- x
Mc StringView Content Link - Disable or enable the default View Content Link for sensitive emails.
- x
Ses StringConfiguration Set - SES Configuration set to include when sending emails.
EmailProviderSettingsMessage, EmailProviderSettingsMessageArgs
- Configuration
Set stringName - Setting for the
ses
email provider. The name of the configuration set to apply to the sent emails. - View
Content boolLink - Setting for the
mandrill
email provider. Set totrue
to see the content of individual emails sent to users.
- Configuration
Set stringName - Setting for the
ses
email provider. The name of the configuration set to apply to the sent emails. - View
Content boolLink - Setting for the
mandrill
email provider. Set totrue
to see the content of individual emails sent to users.
- configuration
Set StringName - Setting for the
ses
email provider. The name of the configuration set to apply to the sent emails. - view
Content BooleanLink - Setting for the
mandrill
email provider. Set totrue
to see the content of individual emails sent to users.
- configuration
Set stringName - Setting for the
ses
email provider. The name of the configuration set to apply to the sent emails. - view
Content booleanLink - Setting for the
mandrill
email provider. Set totrue
to see the content of individual emails sent to users.
- configuration_
set_ strname - Setting for the
ses
email provider. The name of the configuration set to apply to the sent emails. - view_
content_ boollink - Setting for the
mandrill
email provider. Set totrue
to see the content of individual emails sent to users.
- configuration
Set StringName - Setting for the
ses
email provider. The name of the configuration set to apply to the sent emails. - view
Content BooleanLink - Setting for the
mandrill
email provider. Set totrue
to see the content of individual emails sent to users.
Import
As this is not a resource identifiable by an ID within the Auth0 Management API,
email can be imported using a random string.
We recommend Version 4 UUID
Example:
$ pulumi import auth0:index/emailProvider:EmailProvider my_email_provider "b4213dc2-2eed-42c3-9516-c6131a9ce0b0"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0
Terraform Provider.