DOCS: Migrated documentation website to Gitbook (#1809)
14
documentation/assets/1password/creds.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"bind": {
|
||||
"TYPE": "BIND"
|
||||
},
|
||||
"cloudflare": {
|
||||
"TYPE": "CLOUDFLAREAPI",
|
||||
"apitoken": "op://Secrets/Cloudflare DNSControl/credential",
|
||||
"accountid": "op://Secrets/Cloudflare DNSControl/username"
|
||||
},
|
||||
"linode": {
|
||||
"TYPE": "LINODE",
|
||||
"token": "op://Secrets/Linode DNSControl/credential"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 755 KiB |
After Width: | Height: | Size: 750 KiB |
BIN
documentation/assets/ci-cd-gitlab/ci-cd-pipelines-new.png
Normal file
After Width: | Height: | Size: 326 KiB |
After Width: | Height: | Size: 618 KiB |
BIN
documentation/assets/ci-cd-gitlab/settings-ci-cd-variables.png
Normal file
After Width: | Height: | Size: 638 KiB |
BIN
documentation/assets/circleci_release.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
documentation/assets/gcloud-json-screen.png
Normal file
After Width: | Height: | Size: 84 KiB |
11
documentation/assets/getting-started/creds.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"bind": {
|
||||
"TYPE": "BIND"
|
||||
},
|
||||
"r53_ACCOUNTNAME": {
|
||||
"TYPE": "ROUTE53",
|
||||
"KeyId": "change_to_your_keyid",
|
||||
"SecretKey": "change_to_your_secretkey",
|
||||
"Token": "optional_sts_token"
|
||||
}
|
||||
}
|
14
documentation/assets/getting-started/dnsconfig.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
dnsconfig.js: dnscontrol configuration file for ORGANIZATION NAME.
|
||||
*/
|
||||
|
||||
// Providers:
|
||||
|
||||
var REG_NONE = NewRegistrar('none'); // No registrar.
|
||||
var DNS_BIND = NewDnsProvider('bind'); // ISC BIND.
|
||||
|
||||
// Domains:
|
||||
|
||||
D('example.com', REG_NONE, DnsProvider(DNS_BIND),
|
||||
A('@', '1.2.3.4')
|
||||
);
|