Skip to content

Commit

Permalink
Fixed godaddy default TTL value (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
shibayan authored Sep 22, 2021
1 parent 1e4c19d commit ad09225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KeyVault.Acmebot/Providers/GoDaddyProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public GoDaddyProvider(GoDaddyOptions options)

private readonly GoDaddyClient _client;

public int PropagationSeconds => 60;
public int PropagationSeconds => 600;

public async Task<IReadOnlyList<DnsZone>> ListZonesAsync()
{
Expand All @@ -40,7 +40,7 @@ public async Task CreateTxtRecordAsync(DnsZone zone, string relativeRecordName,
{
Name = relativeRecordName,
Type = "TXT",
TTL = 60,
TTL = 600,
Data = value
});
}
Expand Down

0 comments on commit ad09225

Please sign in to comment.