Skip to content

Commit

Permalink
Merge pull request #9 from kinvolk/jepio/preferred-chain-support
Browse files Browse the repository at this point in the history
preferred chain support
  • Loading branch information
vbatts authored Feb 8, 2022
2 parents 0ace442 + 1eed9c6 commit a1ec9b2
Show file tree
Hide file tree
Showing 4 changed files with 218 additions and 120 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ accounts:
certificates:
- account: infra@example.com
common_name: foo.example.com
preferred_chain: ISRG Root X1
subject_alternative_names:
- bar.example.com
- baz.example.com
Expand Down Expand Up @@ -125,6 +126,7 @@ accounts:
certificates:
- account: infra@example.com
common_name: "*.example.com"
preferred_chain: ""
subject_alternative_names: []
```

Expand Down
12 changes: 4 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,18 @@ module github.com/kinvolk/lerobot
go 1.13

require (
github.com/aws/aws-sdk-go v1.42.46 // indirect
github.com/aws/aws-sdk-go v1.42.47 // indirect
github.com/cenkalti/backoff/v4 v4.1.2 // indirect
github.com/go-acme/lego/v3 v3.9.0
github.com/kr/text v0.2.0 // indirect
github.com/miekg/dns v1.1.45 // indirect
github.com/go-acme/lego/v4 v4.6.0
github.com/miekg/dns v1.1.46 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/spf13/afero v1.8.0 // indirect
github.com/spf13/afero v1.8.1 // indirect
github.com/spf13/cobra v1.3.0
github.com/spf13/viper v1.10.1
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a // indirect
golang.org/x/tools v0.1.9 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/ini.v1 v1.66.3 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
gopkg.in/yaml.v2 v2.4.0
)
Loading

0 comments on commit a1ec9b2

Please sign in to comment.