Skip to content

Commit

Permalink
Add support letsencrypt dns01 challenge (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
nightfury1204 committed Aug 8, 2023
1 parent 4e007ec commit b486f8d
Show file tree
Hide file tree
Showing 616 changed files with 153,118 additions and 31,878 deletions.
66 changes: 66 additions & 0 deletions docs/reference/cli/letsencrypt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
---
title: "apps"
draft: false
slug: apps
url: /reference/cli/letsencrypt
---
# letsencrypt

## letsencrypt dns route53 list

List configured letsencrypt dns solvers for route53

### Usage
```html
convox letsencrypt dns route53 list
```
### Examples
```html
$ convox letsencrypt dns route53 list
ID DNS-ZONES HOSTED-ZONE-ID REGION ROLE
1 convox.site XXXXXXXXXXXXX us-east-1 arn:aws:iam::XXXXXXXXXXXX:role/dns-access
```
## letsencrypt dns route53 update

Update letsencrypt dns solvers for route53 dns zone

### Usage
```html
convox letsencrypt dns route53 update --id [id] --dns-zones [dnz-zone] --role [role] --hosted-zone-id [zone-id] --region [region]
```

### Examples
```html
$ convox letsencrypt dns route53 update --id 1 --dns-zones xxxx --role arn:aws:iam::XXXXXXXXXXXX:role/dns-access --hosted-zone-id xxxxxxxxxxx --region us-east-1
OK
```

## letsencrypt dns route53 delete

Delete letsencrypt dns solvers for route53 dns zone

### Usage
```html
convox letsencrypt dns route53 delete --id [id]
```

### Examples
```html
$ convox letsencrypt dns route53 delete --id 1
OK
```

## letsencrypt dns route53 role

Letsencrypt route53 role

### Usage
```html
convox letsencrypt dns route53 role
```

### Examples
```html
$ convox letsencrypt dns route53 role
arn:aws:iam::XXXXXXXXXXXX:role/xxx-cert-manager
```
67 changes: 36 additions & 31 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ module github.com/convox/convox
go 1.18

require (
cloud.google.com/go/storage v1.10.0
github.com/Azure/azure-sdk-for-go v56.3.0+incompatible
cloud.google.com/go/storage v1.23.0
github.com/Azure/azure-sdk-for-go v66.0.0+incompatible
github.com/Azure/azure-storage-file-go v0.6.0
github.com/Azure/go-autorest/autorest v0.11.27
github.com/Azure/go-autorest/autorest v0.11.28
github.com/Azure/go-autorest/autorest/azure/auth v0.4.2
github.com/algolia/algoliasearch-client-go v2.25.0+incompatible
github.com/aws/aws-sdk-go v1.40.21
github.com/aws/aws-sdk-go v1.44.105
github.com/convox/changes v0.0.0-20191105034405-8c0df759a3b3
github.com/convox/exec v0.0.0-20180905012044-cc13d277f897
github.com/convox/go-u2fhost v0.0.0-20220210143516-c133f566e496
Expand All @@ -20,7 +20,7 @@ require (
github.com/convox/version v0.0.0-20160822184233-ffefa0d565d2
github.com/crazy-max/xgo v0.24.0
github.com/creack/pty v1.1.18
github.com/docker/docker v20.10.14+incompatible
github.com/docker/docker v20.10.17+incompatible
github.com/dustin/go-humanize v1.0.0
github.com/elastic/go-elasticsearch/v6 v6.8.2
github.com/fsouza/go-dockerclient v1.4.2
Expand All @@ -32,15 +32,15 @@ require (
github.com/hashicorp/terraform-config-inspect v0.0.0-20230614215431-f32df32a01cd
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/miekg/dns v1.1.47
github.com/miekg/dns v1.1.50
github.com/pkg/errors v0.9.1
github.com/russross/blackfriday v2.0.0+incompatible
github.com/satori/go.uuid v1.2.0
github.com/stretchr/testify v1.8.4
github.com/vektra/mockery v1.1.2
golang.org/x/crypto v0.0.0-20221005025214-4161e89ecf1b
golang.org/x/text v0.11.0
google.golang.org/api v0.62.0
google.golang.org/api v0.97.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.25.10
k8s.io/apimachinery v0.25.10
Expand All @@ -51,34 +51,36 @@ require (
)

require (
cloud.google.com/go v0.99.0 // indirect
cloud.google.com/go v0.102.1 // indirect
cloud.google.com/go/compute v1.7.0 // indirect
cloud.google.com/go/iam v0.3.0 // indirect
github.com/Azure/azure-pipeline-go v0.2.2 // indirect
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.21 // indirect
github.com/Azure/go-autorest/autorest/azure/cli v0.3.1 // indirect
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
github.com/Azure/go-autorest/logger v0.2.1 // indirect
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
github.com/Microsoft/go-winio v0.5.1 // indirect
github.com/Microsoft/hcsshim v0.9.2 // indirect
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/Microsoft/hcsshim v0.9.6 // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/adrg/xdg v0.2.1 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/containerd/cgroups v1.0.3 // indirect
github.com/containerd/containerd v1.6.3 // indirect
github.com/containerd/cgroups v1.0.4 // indirect
github.com/containerd/containerd v1.6.15 // indirect
github.com/convox/inotify v0.0.0-20170313035821-b56f5149b5c6 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/docker/engine v1.4.2-0.20190717161051-705d9623b7c1 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.19.5 // indirect
Expand All @@ -93,7 +95,10 @@ require (
github.com/google/gnostic v0.6.9 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
github.com/googleapis/go-type-adapters v1.0.0 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hcl/v2 v2.17.0 // indirect
Expand Down Expand Up @@ -121,46 +126,46 @@ require (
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
github.com/opencontainers/runc v1.1.1 // indirect
github.com/opencontainers/runc v1.1.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.0 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/spf13/cobra v1.4.0 // indirect
github.com/spf13/cobra v1.5.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/zclconf/go-cty v1.13.0 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.6.0 // indirect
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
golang.org/x/tools v0.6.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220118154757-00ab72f36ad5 // indirect
google.golang.org/grpc v1.45.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f // indirect
google.golang.org/grpc v1.47.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiextensions-apiserver v0.24.2 // indirect
k8s.io/apiextensions-apiserver v0.25.2 // indirect
k8s.io/gengo v0.0.0-20211129171323-c02415ce4185 // indirect
k8s.io/klog/v2 v2.70.1 // indirect
k8s.io/kube-aggregator v0.24.2 // indirect
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
sigs.k8s.io/gateway-api v0.4.3 // indirect
k8s.io/klog/v2 v2.80.1 // indirect
k8s.io/kube-aggregator v0.25.2 // indirect
k8s.io/kube-openapi v0.0.0-20220803164354-a70c9af30aea // indirect
k8s.io/utils v0.0.0-20220922133306-665eaaec4324 // indirect
sigs.k8s.io/gateway-api v0.5.0 // indirect
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)

require (
github.com/bearsh/hid v1.4.0 // indirect
github.com/cert-manager/cert-manager v1.9.0
github.com/cert-manager/cert-manager v1.10.2
github.com/gorilla/sessions v1.2.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/moby/buildkit v0.10.6 // indirect
Expand Down
Loading

0 comments on commit b486f8d

Please sign in to comment.