mirror of
				https://github.com/StackExchange/dnscontrol.git
				synced 2024-05-11 05:55:12 +00:00 
			
		
		
		
	* Use a standard JSON comparison tool * Fixes https://github.com/StackExchange/dnscontrol/issues/886 * Delete file in wrong place. * Remove the need for minify
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "registrars": [ { "name": "Third-Party", "type": "NONE" } ],
 | 
						|
  "dns_providers": [ { "name": "Cloudflare", "type": "CLOUDFLAREAPI" } ],
 | 
						|
  "domains": [
 | 
						|
    {
 | 
						|
      "name": "foo.com",
 | 
						|
      "registrar": "Third-Party",
 | 
						|
      "dnsProviders": { "Cloudflare": -1 },
 | 
						|
      "records": [
 | 
						|
        { "name": "@", "target": "10.1.1.1", "type": "A" },
 | 
						|
        { "name": "www", "target": "10.2.2.2", "type": "A" }
 | 
						|
      ]
 | 
						|
    },
 | 
						|
    {
 | 
						|
      "name": "bar.foo.com",
 | 
						|
      "registrar": "Third-Party",
 | 
						|
      "dnsProviders": { "Cloudflare": -1 },
 | 
						|
      "records": [
 | 
						|
        { "name": "@", "target": "10.3.3.3", "type": "A" },
 | 
						|
        { "name": "www", "target": "10.4.4.4", "type": "A" }
 | 
						|
      ]
 | 
						|
    },
 | 
						|
    {
 | 
						|
      "name": "foo.edu",
 | 
						|
      "registrar": "Third-Party",
 | 
						|
      "dnsProviders": { "Cloudflare": -1 },
 | 
						|
      "records": [
 | 
						|
        { "name": "@", "target": "10.5.5.5", "type": "A" },
 | 
						|
        { "name": "www", "target": "10.6.6.6", "type": "A" },
 | 
						|
        { "name": "more1", "target": "10.7.7.7", "type": "A" },
 | 
						|
        { "name": "more2", "target": "10.8.8.8", "type": "A" }
 | 
						|
      ]
 | 
						|
    }
 | 
						|
  ]
 | 
						|
}
 |