1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Files
stackexchange-dnscontrol/docs/_providers/domainnameshop.md
Simen Bai e9510da434 Domainnameshop provider (#1625)
* Added basic structure for domain name shop

* Finished proof of concept for domainnameshop

* Fixed handeling of IDNA for CNAME records

* Updated documentation notes

* Added docs

* Ran linter and vet

* Removed proxy config used for debugging

* Ran go generate

* Fixed issue with TTLs being restricted to a multiple of 60

* Ran tests, vet and linting and fixed flaws

* Fixed typo in docs

* Improved code based on feedback

* Fixed issues with TXT records not working properly

* Refactored according to new file layout proposed

* Updated documentation matrix

* Suggestions and corrections

* Corrected according to suggestions

Co-authored-by: Simen Bai <git@simenbai.no>
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
2022-08-01 12:01:37 -04:00

46 lines
1012 B
Markdown

---
name: DomainNameShop
title: DomainNameShop Provider
layout: default
jsId: DOMAINNAMESHOP
---
# DOMAINNAMESHOP Provider
## Configuration
To use this provider, add an entry to `creds.json` with `TYPE` set to `DOMAINNAMESHOP`
along with your [DomainNameShop Token and Secret](https://www.domeneshop.no/admin?view=api).
Example:
```json
{
"mydomainnameshop": {
"TYPE": "DOMAINNAMESHOP",
"token": "your-domainnameshop-token",
"secret": "your-domainnameshop-secret"
}
}
```
## Metadata
This provider does not recognize any special metadata fields unique to DomainNameShop.
## Usage
An example `dnsconfig.js` configuration:
```js
var REG_NONE = NewRegistrar("none");
var DSP_DOMAINNAMESHOP = NewDnsProvider("mydomainnameshop");
D("example.tld", REG_NONE, DnsProvider(DSP_DOMAINNAMESHOP),
A("test", "1.2.3.4")
);
```
## Activation
[Create API Token and secret](https://www.domeneshop.no/admin?view=api)
## Limitations
- DomainNameShop DNS only supports TTLs which are a multiple of 60.