From ba9379dfb83d48d34ea00cd46b6d4aa075658cf9 Mon Sep 17 00:00:00 2001 From: Ian Lewis Date: Mon, 22 Oct 2018 11:23:10 +0900 Subject: [PATCH] Fixed instructions in the readme - Fixed path pointing to old Github id - Fixed config example --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5f6a960..511d9cb 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ cloud-dyndns-client requires **Go 1.8**. `go get`: ``` -go get github.com/IanLewis/cloud-dyndns-client/cmd/cloud-dyndns-client +go get github.com/ianlewis/cloud-dyndns-client/cmd/cloud-dyndns-client ``` This will download the code, compile it, and leave an `cloud-dyndns-client` binary @@ -55,11 +55,13 @@ Create a `config.json` for the client. Enter the domain name you want to update, ``` { - "mydomain.example.com": { - "provider": "gcp", - "provider_config": { - "project_id": "example-project", - "managed_zone": "example-zone", + "domains": { + "mydomain.example.com": { + "provider": "gcp", + "provider_config": { + "project_id": "example-project", + "managed_zone": "example-zone", + } } } }