Get the default DNS credential (resolves the ID to the actual credential)
(&self)
| 769 | |
| 770 | /// Get the default DNS credential (resolves the ID to the actual credential) |
| 771 | pub fn get_default_dns_credential(&self) -> Option<DnsCredential> { |
| 772 | let cred_id = self.get_default_dns_credential_id()?; |
| 773 | self.get_dns_credential(&cred_id) |
| 774 | } |
| 775 | |
| 776 | // ==================== Global Certbot Config ==================== |
| 777 |
no test coverage detected