Skip to content

Commit

Permalink
Adds Dnsimple as a provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Aguirre committed Jun 13, 2017
1 parent 3355528 commit fa1d0b7
Show file tree
Hide file tree
Showing 5 changed files with 840 additions and 11 deletions.
40 changes: 29 additions & 11 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ import:
version: ~8.0.0
- package: github.com/dgrijalva/jwt-go
version: ~3.0.0
- package: github.com/dnsimple/dnsimple-go
version: ~0.14.0
subpackages:
- dnsimple
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ func main() {
p, err = provider.NewGoogleProvider(cfg.GoogleProject, cfg.DomainFilter, cfg.DryRun)
case "aws":
p, err = provider.NewAWSProvider(cfg.DomainFilter, cfg.DryRun)
case "dnsimple":
p, err = provider.NewDnsimpleProvider(cfg.DomainFilter, cfg.DryRun)
case "inmemory":
p, err = provider.NewInMemoryProviderWithDomainAndLogging("example.com"), nil
case "azure":
Expand Down
Loading

0 comments on commit fa1d0b7

Please sign in to comment.