mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	* Add plugin for Azure DNS Signed-off-by: darshanime <deathbullet@gmail.com> * Rename AzureDNS plugin to Azure Signed-off-by: darshanime <deathbullet@gmail.com> * remove upstream from azure syntax Signed-off-by: darshanime <deathbullet@gmail.com> * Rename azure plugin block keynames Signed-off-by: darshanime <deathbullet@gmail.com> * Normalize zone name before lookup in zones Signed-off-by: darshanime <deathbullet@gmail.com> * Update import path for caddy Signed-off-by: darshanime <deathbullet@gmail.com> * normalize azure zone name only if required Signed-off-by: darshanime <deathbullet@gmail.com> * Add support for MX, SRV, TXT, records Signed-off-by: darshanime <deathbullet@gmail.com> * Add specs for new record types Signed-off-by: darshanime <deathbullet@gmail.com> * Use sequential updates for zones Signed-off-by: darshanime <deathbullet@gmail.com> * Add OWNERS file for azure plugin Signed-off-by: darshanime <deathbullet@gmail.com> * Rename imports for third party packages Signed-off-by: darshanime <deathbullet@gmail.com> * Capitalize values in README Signed-off-by: darshanime <deathbullet@gmail.com> * Shorten keys for azure plugin config Signed-off-by: darshanime <deathbullet@gmail.com> * Fixup readme for azure plugin Signed-off-by: darshanime <deathbullet@gmail.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// generated by directives_generate.go; DO NOT EDIT
 | 
						|
 | 
						|
package plugin
 | 
						|
 | 
						|
import (
 | 
						|
	// Include all plugins.
 | 
						|
	_ "github.com/caddyserver/caddy/onevent"
 | 
						|
	_ "github.com/coredns/coredns/plugin/any"
 | 
						|
	_ "github.com/coredns/coredns/plugin/auto"
 | 
						|
	_ "github.com/coredns/coredns/plugin/autopath"
 | 
						|
	_ "github.com/coredns/coredns/plugin/azure"
 | 
						|
	_ "github.com/coredns/coredns/plugin/bind"
 | 
						|
	_ "github.com/coredns/coredns/plugin/cache"
 | 
						|
	_ "github.com/coredns/coredns/plugin/cancel"
 | 
						|
	_ "github.com/coredns/coredns/plugin/chaos"
 | 
						|
	_ "github.com/coredns/coredns/plugin/debug"
 | 
						|
	_ "github.com/coredns/coredns/plugin/dnssec"
 | 
						|
	_ "github.com/coredns/coredns/plugin/dnstap"
 | 
						|
	_ "github.com/coredns/coredns/plugin/erratic"
 | 
						|
	_ "github.com/coredns/coredns/plugin/errors"
 | 
						|
	_ "github.com/coredns/coredns/plugin/etcd"
 | 
						|
	_ "github.com/coredns/coredns/plugin/federation"
 | 
						|
	_ "github.com/coredns/coredns/plugin/file"
 | 
						|
	_ "github.com/coredns/coredns/plugin/forward"
 | 
						|
	_ "github.com/coredns/coredns/plugin/grpc"
 | 
						|
	_ "github.com/coredns/coredns/plugin/health"
 | 
						|
	_ "github.com/coredns/coredns/plugin/hosts"
 | 
						|
	_ "github.com/coredns/coredns/plugin/k8s_external"
 | 
						|
	_ "github.com/coredns/coredns/plugin/kubernetes"
 | 
						|
	_ "github.com/coredns/coredns/plugin/loadbalance"
 | 
						|
	_ "github.com/coredns/coredns/plugin/log"
 | 
						|
	_ "github.com/coredns/coredns/plugin/loop"
 | 
						|
	_ "github.com/coredns/coredns/plugin/metadata"
 | 
						|
	_ "github.com/coredns/coredns/plugin/metrics"
 | 
						|
	_ "github.com/coredns/coredns/plugin/nsid"
 | 
						|
	_ "github.com/coredns/coredns/plugin/pprof"
 | 
						|
	_ "github.com/coredns/coredns/plugin/ready"
 | 
						|
	_ "github.com/coredns/coredns/plugin/reload"
 | 
						|
	_ "github.com/coredns/coredns/plugin/rewrite"
 | 
						|
	_ "github.com/coredns/coredns/plugin/root"
 | 
						|
	_ "github.com/coredns/coredns/plugin/route53"
 | 
						|
	_ "github.com/coredns/coredns/plugin/secondary"
 | 
						|
	_ "github.com/coredns/coredns/plugin/template"
 | 
						|
	_ "github.com/coredns/coredns/plugin/tls"
 | 
						|
	_ "github.com/coredns/coredns/plugin/trace"
 | 
						|
	_ "github.com/coredns/coredns/plugin/whoami"
 | 
						|
)
 |