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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
|
---
title: Built-in functions
weight: 0
---
In addition to all of the functions and operators that the [Go template](https://golang.org/pkg/text/template/)
language provides (`if`, `else`, `eq`, `and`, `or`, `range`, etc...), there are
some additional functions baked in to `gomplate`:
## `contains`
Contains reports whether the second string is contained within the first. Equivalent to
[strings.Contains](https://golang.org/pkg/strings#Contains)
### Example
_`input.tmpl`:_
```
{{if contains .Env.FOO "f"}}yes{{else}}no{{end}}
```
```console
$ FOO=foo gomplate < input.tmpl
yes
$ FOO=bar gomplate < input.tmpl
no
```
## `getenv`
Exposes the [os.Getenv](https://golang.org/pkg/os/#Getenv) function.
This is a more forgiving alternative to using `.Env`, since missing keys will
return an empty string.
An optional default value can be given as well.
#### Example
```console
$ gomplate -i 'Hello, {{getenv "USER"}}'
Hello, hairyhenderson
$ gomplate -i 'Hey, {{getenv "FIRSTNAME" "you"}}!'
Hey, you!
```
## `hasPrefix`
Tests whether the string begins with a certain substring. Equivalent to
[strings.HasPrefix](https://golang.org/pkg/strings#HasPrefix)
#### Example
_`input.tmpl`:_
```
{{if hasPrefix .Env.URL "https"}}foo{{else}}bar{{end}}
```
```console
$ URL=http://example.com gomplate < input.tmpl
bar
$ URL=https://example.com gomplate < input.tmpl
foo
```
## `hasSuffix`
Tests whether the string ends with a certain substring. Equivalent to
[strings.HasSuffix](https://golang.org/pkg/strings#HasSuffix)
#### Example
_`input.tmpl`:_
```
{{.Env.URL}}{{if not (hasSuffix .Env.URL ":80")}}:80{{end}}
```
```console
$ URL=http://example.com gomplate < input.tmpl
http://example.com:80
```
## `bool`
Converts a true-ish string to a boolean. Can be used to simplify conditional statements based on environment variables or other text input.
#### Example
_`input.tmpl`:_
```
{{if bool (getenv "FOO")}}foo{{else}}bar{{end}}
```
```console
$ gomplate < input.tmpl
bar
$ FOO=true gomplate < input.tmpl
foo
```
## `slice`
Creates a slice. Useful when needing to `range` over a bunch of variables.
#### Example
_`input.tmpl`:_
```
{{range slice "Bart" "Lisa" "Maggie"}}
Hello, {{.}}
{{- end}}
```
```console
$ gomplate < input.tmpl
Hello, Bart
Hello, Lisa
Hello, Maggie
```
## `split`
Creates a slice by splitting a string on a given delimiter. Equivalent to
[strings.Split](https://golang.org/pkg/strings#Split)
#### Example
```console
$ gomplate -i '{{range split "Bart,Lisa,Maggie" ","}}Hello, {{.}}{{end}}'
Hello, Bart
Hello, Lisa
Hello, Maggie
```
## `splitN`
Creates a slice by splitting a string on a given delimiter. The count determines
the number of substrings to return. Equivalent to [strings.SplitN](https://golang.org/pkg/strings#SplitN)
#### Example
```console
$ gomplate -i '{{ range splitN "foo:bar:baz" ":" 2 }}{{.}}{{end}}'
foo
bar:baz
```
## `replaceAll`
Replaces all occurrences of a given string with another.
#### Example
```console
$ gomplate -i '{{ replaceAll "." "-" "172.21.1.42" }}'
172-21-1-42
```
#### Example (with pipeline)
```console
$ gomplate -i '{{ "172.21.1.42" | replaceAll "." "-" }}'
172-21-1-42
```
## `title`
Convert to title-case. Equivalent to [strings.Title](https://golang.org/pkg/strings/#Title)
#### Example
```console
$ echo '{{title "hello, world!"}}' | gomplate
Hello, World!
```
## `toLower`
Convert to lower-case. Equivalent to [strings.ToLower](https://golang.org/pkg/strings/#ToLower)
#### Example
```console
$ echo '{{toLower "HELLO, WORLD!"}}' | gomplate
hello, world!
```
## `toUpper`
Convert to upper-case. Equivalent to [strings.ToUpper](https://golang.org/pkg/strings/#ToUpper)
#### Example
```console
$ echo '{{toUpper "hello, world!"}}' | gomplate
HELLO, WORLD!
```
## `trim`
Trims a string by removing the given characters from the beginning and end of
the string. Equivalent to [strings.Trim](https://golang.org/pkg/strings/#Trim)
#### Example
_`input.tmpl`:_
```
Hello, {{trim .Env.FOO " "}}!
```
```console
$ FOO=" world " | gomplate < input.tmpl
Hello, world!
```
## `urlParse`
Parses a string as a URL for later use. Equivalent to [url.Parse](https://golang.org/pkg/net/url/#Parse)
#### Example
_`input.tmpl`:_
```
{{ $u := urlParse "https://example.com:443/foo/bar" }}
The scheme is {{ $u.Scheme }}
The host is {{ $u.Host }}
The path is {{ $u.Path }}
```
```console
$ gomplate < input.tmpl
The scheme is https
The host is example.com:443
The path is /foo/bar
```
## `has`
Has reports whether or not a given object has a property with the given key. Can be used with `if` to prevent the template from trying to access a non-existent property in an object.
#### Example
_Let's say we're using a Vault datasource..._
_`input.tmpl`:_
```
{{ $secret := datasource "vault" "mysecret" -}}
The secret is '
{{- if (has $secret "value") }}
{{- $secret.value }}
{{- else }}
{{- $secret | toYAML }}
{{- end }}'
```
If the `secret/foo/mysecret` secret in Vault has a property named `value` set to `supersecret`:
```console
$ gomplate -d vault:///secret/foo < input.tmpl
The secret is 'supersecret'
```
On the other hand, if there is no `value` property:
```console
$ gomplate -d vault:///secret/foo < input.tmpl
The secret is 'foo: bar'
```
## `join`
Concatenates the elements of an array to create a string. The separator string sep is placed between elements in the resulting string.
#### Example
_`input.tmpl`_
```
{{ $a := `[1, 2, 3]` | jsonArray }}
{{ join $a "-" }}
```
```console
$ gomplate -f input.tmpl
1-2-3
```
## `indent`
Indents a given string with the given indentation pattern. If the input string has multiple lines, each line will be indented.
#### Example
This function can be especially useful when adding YAML snippets into other YAML documents, where indentation is important:
_`input.tmpl`:_
```
foo:
{{ `{"bar": {"baz": 2}}` | json | toYAML | indent " " }}
```
```console
$ gomplate -f input.tmpl
foo:
bar:
baz: 2
```
## `json`
Converts a JSON string into an object. Only works for JSON Objects (not Arrays or other valid JSON types). This can be used to access properties of JSON objects.
#### Example
_`input.tmpl`:_
```
Hello {{ (getenv "FOO" | json).hello }}
```
```console
$ export FOO='{"hello":"world"}'
$ gomplate < input.tmpl
Hello world
```
## `jsonArray`
Converts a JSON string into a slice. Only works for JSON Arrays.
#### Example
_`input.tmpl`:_
```
Hello {{ index (getenv "FOO" | jsonArray) 1 }}
```
```console
$ export FOO='[ "you", "world" ]'
$ gomplate < input.tmpl
Hello world
```
## `yaml`
Converts a YAML string into an object. Only works for YAML Objects (not Arrays or other valid YAML types). This can be used to access properties of YAML objects.
#### Example
_`input.tmpl`:_
```
Hello {{ (getenv "FOO" | yaml).hello }}
```
```console
$ export FOO='hello: world'
$ gomplate < input.tmpl
Hello world
```
## `yamlArray`
Converts a YAML string into a slice. Only works for YAML Arrays.
#### Example
_`input.tmpl`:_
```
Hello {{ index (getenv "FOO" | yamlArray) 1 }}
```
```console
$ export FOO='[ "you", "world" ]'
$ gomplate < input.tmpl
Hello world
```
## `toJSON`
Converts an object to a JSON document. Input objects may be the result of `json`, `yaml`, `jsonArray`, or `yamlArray` functions, or they could be provided by a `datasource`.
#### Example
_This is obviously contrived - `json` is used to create an object._
_`input.tmpl`:_
```
{{ (`{"foo":{"hello":"world"}}` | json).foo | toJSON }}
```
```console
$ gomplate < input.tmpl
{"hello":"world"}
```
## `toJSONPretty`
Converts an object to a pretty-printed (or _indented_) JSON document. Input objects may be the result of `json`, `yaml`, `jsonArray`, or `yamlArray` functions, or they could be provided by a `datasource`.
The indent string must be provided as an argument.
#### Example
_`input.tmpl`:_
```
{{ `{"hello":"world"}` | json | toJSONPretty " " }}
```
```console
$ gomplate < input.tmpl
{
"hello": "world"
}
```
## `toYAML`
Converts an object to a YAML document. Input objects may be the result of `json`, `yaml`, `jsonArray`, or `yamlArray` functions, or they could be provided by a `datasource`.
#### Example
_This is obviously contrived - `json` is used to create an object._
_`input.tmpl`:_
```
{{ (`{"foo":{"hello":"world"}}` | json).foo | toYAML }}
```
```console
$ gomplate < input.tmpl
hello: world
```
## `datasource`
Parses a given datasource (provided by the [`--datasource/-d`](#--datasource-d) argument).
Currently, `file://`, `http://`, `https://`, and `vault://` URLs are supported.
Currently-supported formats are JSON and YAML.
#### Examples
##### Basic usage
_`person.json`:_
```json
{
"name": "Dave"
}
```
_`input.tmpl`:_
```
Hello {{ (datasource "person").name }}
```
```console
$ gomplate -d person.json < input.tmpl
Hello Dave
```
##### Usage with HTTP data
```console
$ echo 'Hello there, {{(datasource "foo").headers.Host}}...' | gomplate -d foo=https://httpbin.org/get
Hello there, httpbin.org...
```
Additional headers can be provided with the `--datasource-header`/`-H` option:
```console
$ gomplate -d foo=https://httpbin.org/get -H 'foo=Foo: bar' -i '{{(datasource "foo").headers.Foo}}'
bar
```
##### Usage with Vault data
The special `vault://` URL scheme can be used to retrieve data from [Hashicorp
Vault](https://vaultproject.io). To use this, you must put the Vault server's
URL in the `$VAULT_ADDR` environment variable.
This table describes the currently-supported authentication mechanisms and how to use them, in order of precedence:
| auth backend | configuration |
| ---: |--|
| [`approle`](https://www.vaultproject.io/docs/auth/approle.html) | Environment variables `$VAULT_ROLE_ID` and `$VAULT_SECRET_ID` must be set to the appropriate values.<br/> If the backend is mounted to a different location, set `$VAULT_AUTH_APPROLE_MOUNT`. |
| [`app-id`](https://www.vaultproject.io/docs/auth/app-id.html) | Environment variables `$VAULT_APP_ID` and `$VAULT_USER_ID` must be set to the appropriate values.<br/> If the backend is mounted to a different location, set `$VAULT_AUTH_APP_ID_MOUNT`. |
| [`github`](https://www.vaultproject.io/docs/auth/github.html) | Environment variable `$VAULT_AUTH_GITHUB_TOKEN` must be set to an appropriate value.<br/> If the backend is mounted to a different location, set `$VAULT_AUTH_GITHUB_MOUNT`. |
| [`userpass`](https://www.vaultproject.io/docs/auth/userpass.html) | Environment variables `$VAULT_AUTH_USERNAME` and `$VAULT_AUTH_PASSWORD` must be set to the appropriate values.<br/> If the backend is mounted to a different location, set `$VAULT_AUTH_USERPASS_MOUNT`. |
| [`token`](https://www.vaultproject.io/docs/auth/token.html) | Determined from either the `$VAULT_TOKEN` environment variable, or read from the file `~/.vault-token` |
_**Note:**_ The secret values listed in the above table can either be set in environment
variables or provided in files. This can increase security when using
[Docker Swarm Secrets](https://docs.docker.com/engine/swarm/secrets/), for example.
To use files, specify the filename by appending `_FILE` to the environment variable,
(i.e. `VAULT_USER_ID_FILE`). If the non-file variable is set, this will override
any `_FILE` variable and the secret file will be ignored.
To use a Vault datasource with a single secret, just use a URL of
`vault:///secret/mysecret`. Note the 3 `/`s - the host portion of the URL is left
empty.
```console
$ echo 'My voice is my passport. {{(datasource "vault").value}}' \
| gomplate -d vault=vault:///secret/sneakers
My voice is my passport. Verify me.
```
You can also specify the secret path in the template by using a URL of `vault://`
(or `vault:///`, or `vault:`):
```console
$ echo 'My voice is my passport. {{(datasource "vault" "secret/sneakers").value}}' \
| gomplate -d vault=vault://
My voice is my passport. Verify me.
```
And the two can be mixed to scope secrets to a specific namespace:
```console
$ echo 'db_password={{(datasource "vault" "db/pass").value}}' \
| gomplate -d vault=vault:///secret/production
db_password=prodsecret
```
## `datasourceExists`
Tests whether or not a given datasource was defined on the commandline (with the
[`--datasource/-d`](#--datasource-d) argument). This is intended mainly to allow
a template to be rendered differently whether or not a given datasource was
defined.
Note: this does _not_ verify if the datasource is reachable.
Useful when used in an `if`/`else` block
```console
$ echo '{{if (datasourceExists "test")}}{{datasource "test"}}{{else}}no worries{{end}}' | gomplate
no worries
```
## `ds`
Alias to [`datasource`](#datasource)
## `ec2meta`
Queries AWS [EC2 Instance Metadata](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html) for information. This only retrieves data in the `meta-data` path -- for data in the `dynamic` path use `ec2dynamic`.
This only works when running `gomplate` on an EC2 instance. If the EC2 instance metadata API isn't available, the tool will timeout and fail.
#### Example
```console
$ echo '{{ec2meta "instance-id"}}' | gomplate
i-12345678
```
## `ec2dynamic`
Queries AWS [EC2 Instance Dynamic Metadata](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html) for information. This only retrieves data in the `dynamic` path -- for data in the `meta-data` path use `ec2meta`.
This only works when running `gomplate` on an EC2 instance. If the EC2 instance metadata API isn't available, the tool will timeout and fail.
#### Example
```console
$ echo '{{ (ec2dynamic "instance-identity/document" | json).region }}' | ./gomplate
us-east-1
```
## `ec2region`
Queries AWS to get the region. An optional default can be provided, or returns
`unknown` if it can't be determined for some reason.
#### Example
_In EC2_
```console
$ echo '{{ ec2region }}' | ./gomplate
us-east-1
```
_Not in EC2_
```console
$ echo '{{ ec2region }}' | ./gomplate
unknown
$ echo '{{ ec2region "foo" }}' | ./gomplate
foo
```
## `ec2tag`
Queries the AWS EC2 API to find the value of the given [user-defined tag](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html). An optional default
can be provided.
#### Example
```console
$ echo 'This server is in the {{ ec2tag "Account" }} account.' | ./gomplate
foo
$ echo 'I am a {{ ec2tag "classification" "meat popsicle" }}.' | ./gomplate
I am a meat popsicle.
```
|