We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm trying to use AddDnsChallanegeProvider function but seems like this function is not under AddLetttuceEncrypt() anymore.
Please refer my sample code below:
builder.Services.AddLettuceEncrypt(); .AddDnsChallengeProvider<AzureDnsChallengeProvider>(options => { options.ClientId = builder.Configuration["AzureDns:ClientId"]; options.ClientSecret = builder.Configuration["AzureDns:ClientSecret"]; options.SubscriptionId = builder.Configuration["AzureDns:SubscriptionId"]; options.TenantId = builder.Configuration["AzureDns:TenantId"]; options.ResourceGroupName = builder.Configuration["AzureDns:ResourceGroupName"]; options.ZoneName = builder.Configuration["AzureDns:ZoneName"]; });
The text was updated successfully, but these errors were encountered:
You can use your own implementation of IDnsChallengeProvider like this:
builder.Services.AddLettuceEncrypt(); builder.Services.AddSingleton<IDnsChallengeProvider, AzureDnsChallengeProvider>();
Sorry, something went wrong.
No branches or pull requests
Hi,
I'm trying to use AddDnsChallanegeProvider function but seems like this function is not under AddLetttuceEncrypt() anymore.
Please refer my sample code below:
builder.Services.AddLettuceEncrypt(); .AddDnsChallengeProvider<AzureDnsChallengeProvider>(options => { options.ClientId = builder.Configuration["AzureDns:ClientId"]; options.ClientSecret = builder.Configuration["AzureDns:ClientSecret"]; options.SubscriptionId = builder.Configuration["AzureDns:SubscriptionId"]; options.TenantId = builder.Configuration["AzureDns:TenantId"]; options.ResourceGroupName = builder.Configuration["AzureDns:ResourceGroupName"]; options.ZoneName = builder.Configuration["AzureDns:ZoneName"]; });
The text was updated successfully, but these errors were encountered: