Skip to content

Commit 31b4265

Browse files
authored
Merge pull request #7 from nchlswhttkr/config-file
Load environment variables from a config file Closes #1
2 parents ace18e8 + f8f7173 commit 31b4265

File tree

2 files changed

+42
-4
lines changed

2 files changed

+42
-4
lines changed

README.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,28 @@ docker run -d --restart always \
2525
hugomd/cloudflare-ddns -duration 2h
2626
```
2727

28+
You can load environment variables through a config file of key/value pairs.
29+
30+
```sh
31+
echo "PROVIDER=YOUR_PROVIDER" > config.env
32+
docker run \
33+
-v $PWD/config.env:/tmp/config.env \
34+
hugomd/cloudflare-ddns -config /tmp/config.env
35+
```
36+
2837
# Supported Providers
2938

3039
| Provider | Reference (used for `PROVIDER` environment variable) |
3140
|--------------------------------------|------------------------------------------------------|
3241
| [Cloudflare](https://cloudflare.com) | `cloudflare` |
3342

43+
# CLI
44+
45+
| Parameter | Description | Example | Required |
46+
|-----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|----------|
47+
| `-duration` | Runs program perpetually and recheck after specified interval; parses time strings such as `5m`, `15m`, `2h30m5s`. If not specified, or if equal to 0s, run once and exit. | 2h | `false` |
48+
| `-config` | Loads environment variables from a given file. Variables should be specified as lines of `key=value` pairs. No variables will be loaded if a file is not specified. | `/tmp/config.env` | `false` |
49+
3450
# Environment Variables
3551

3652
All providers require the following environment variable:
@@ -48,10 +64,6 @@ All providers require the following environment variable:
4864
| `CLOUDFLARE_HOST` | The record you want to update | `subdomain.example.com` | `true` |
4965
| `CLOUDFLARE_EMAIL` | Email associated with your Cloudflare account | `[email protected]` | `true` |
5066

51-
| Parameter | Description | Example | Required |
52-
|-----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|----------|
53-
| `-duration` | Runs program perpetually and recheck after specified interval; parses time strings such as `5m`, `15m`, `2h30m5s`. If not specified, or if equal to 0s, run once and exit. | 2h | `false` |
54-
5567
# Contributing
5668

5769
## Adding a new provider

main.go

+26
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"log"
1010
"net/http"
1111
"os"
12+
"strings"
1213
"time"
1314
)
1415

@@ -27,11 +28,29 @@ func checkIP() (string, error) {
2728
return string(bytes.TrimSpace(buf)), nil
2829
}
2930

31+
func setEnvVarsFromConfig(filename *string) error {
32+
contents, err := ioutil.ReadFile(*filename)
33+
if err != nil {
34+
return err
35+
}
36+
37+
lines := strings.Split(string(contents), "\n")
38+
for _, line := range lines {
39+
if strings.Contains(line, "=") {
40+
values := strings.SplitN(line, "=", 2)
41+
os.Setenv(values[0], values[1])
42+
}
43+
}
44+
45+
return nil
46+
}
47+
3048
func main() {
3149
var runonce bool
3250
var ticker *time.Ticker
3351

3452
CheckDuration := flag.Duration("duration", 0, "update interval (ex. 15s, 1m, 6h); if not specified or set to 0s, run only once and exit")
53+
ConfigFile := flag.String("config", "", "location of an (optional) config file to load environment variables from")
3554
flag.Parse()
3655

3756
if *CheckDuration == time.Duration(0) {
@@ -40,6 +59,13 @@ func main() {
4059
ticker = time.NewTicker(*CheckDuration)
4160
}
4261

62+
if *ConfigFile != "" {
63+
err := setEnvVarsFromConfig(ConfigFile)
64+
if err != nil {
65+
panic(err)
66+
}
67+
}
68+
4369
runddns()
4470

4571
if runonce {

0 commit comments

Comments
 (0)