Create Zone

This commit is contained in:
Russ Long 2018-04-02 08:35:53 -04:00
parent eb7bf2b3c5
commit 444f804efe

View File

@ -37,11 +37,11 @@ class PagesController extends Controller
'name' => $zone_name . '.', 'name' => $zone_name . '.',
'ttl' => '86400', 'ttl' => '86400',
'type' => 'SOA', 'type' => 'SOA',
'changetype' => 'REPLACE', 'changetype' => 'replace',
'records' => [ 'records' => [
[ [
'content' => 'pdnstest.tfmm.co. hostmaster.tfmm.co. 2018033001 1800 900 604800 86400', 'content' => 'pdnstest.tfmm.co. hostmaster.tfmm.co. 2018033001 1800 900 604800 86400',
'disabled' => 'false' 'disabled' => false
] ]
] ]
], ],
@ -49,11 +49,11 @@ class PagesController extends Controller
'name' => $zone_name . '.', 'name' => $zone_name . '.',
'ttl' => '3600', 'ttl' => '3600',
'type' => 'A', 'type' => 'A',
'changetype' => 'REPLACE', 'changetype' => 'replace',
'records' => [ 'records' => [
[ [
'content' => $zone_primary_ip, 'content' => $zone_primary_ip,
'disabled' => 'false' 'disabled' => false
] ]
] ]
] ]