basic structure

This commit is contained in:
Simon Marsh 2020-09-20 15:27:24 +01:00
commit fb00485c95
No known key found for this signature in database
GPG Key ID: 30B29A716A54DBB3
3 changed files with 59 additions and 0 deletions

29
.drone.yml Normal file
View File

@ -0,0 +1,29 @@
---
kind: pipeline
type: docker
name: dnscontrol
trigger:
event: push
workspace:
path: /dns
steps:
- name: preview
image: stackexchange/dnscontrol
environment:
PDNS_API_KEY:
from_secret: PDNS_API_KEY
commands:
- dnscontrol preview
- name: push
image: stackexchange/dnscontrol
environment:
PDNS_API_KEY:
from_secret: PDNS_API_KEY
commands:
- dnscontrol push
when:
branch: master

7
creds.json Normal file
View File

@ -0,0 +1,7 @@
{
"powerdns": {
"apiurl": "http://dns-burble.tier2.uk-lon1.burble.dn42:8081/api/v1",
"apikey": "$PDNS_API_KEY",
"servername": "localhost",
}
}

23
dnsconfig.js Normal file
View File

@ -0,0 +1,23 @@
//////////////////////////////////////////////////////////////////////////
// providers section
var REG_NONE = NewRegistrar('none', 'NONE');
var PDNS = NewDnsProvider(
'powerdns',
'PowerDNS',
{
'dnssec_on_create': true
}
);
//////////////////////////////////////////////////////////////////////////
D(
'example.local',
REG_NONE,
DnsProvider(PDNS),
A('@', '1.2.3.4')
);
//////////////////////////////////////////////////////////////////////////
// end of file