aboutsummaryrefslogtreecommitdiff
path: root/man/coredns-import.7
blob: e896d0653760ae2351f8de31a26eab9b34b487d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.\" Generated by Mmark Markdown Processer - mmark.miek.nl
.TH "COREDNS-IMPORT" 7 "February 2021" "CoreDNS" "CoreDNS Plugins"

.SH "NAME"
.PP
\fIimport\fP - includes files or references snippets from a Corefile.

.SH "DESCRIPTION"
.PP
The \fIimport\fP plugin can be used to include files into the main configuration. Another use is to
reference predefined snippets. Both can help to avoid some duplication.

.PP
This is a unique plugin in that \fIimport\fP can appear outside of a server block. In other words, it
can appear at the top of a Corefile where an address would normally be.

.SH "SYNTAX"
.PP
.RS

.nf
import PATTERN

.fi
.RE

.IP \(bu 4
\fBPATTERN\fP is the file, glob pattern (\fB\fC*\fR) or snippet to include. Its contents will replace
this line, as if that file's contents appeared here to begin with.


.SH "FILES"
.PP
You can use \fIimport\fP to include a file or files. This file's location is relative to the
Corefile's location. It is an error if a specific file cannot be found, but an empty glob pattern is
not an error.

.SH "SNIPPETS"
.PP
You can define snippets to be reused later in your Corefile by defining a block with a single-token
label surrounded by parentheses:

.PP
.RS

.nf
(mysnippet) {
    ...
}

.fi
.RE

.PP
Then you can invoke the snippet with \fIimport\fP:

.PP
.RS

.nf
import mysnippet

.fi
.RE

.SH "EXAMPLES"
.PP
Import a shared configuration:

.PP
.RS

.nf
\&. {
   import config/common.conf
}

.fi
.RE

.PP
Where \fB\fCconfig/common.conf\fR contains:

.PP
.RS

.nf
prometheus
errors
log

.fi
.RE

.PP
This imports files found in the zones directory:

.PP
.RS

.nf
import ../zones/*

.fi
.RE

.SH "SEE ALSO"
.PP
See corefile(5).