diff --git a/deploy/crds/crd-challenges.yaml b/deploy/crds/crd-challenges.yaml index f13ef8421..493d2f53a 100644 --- a/deploy/crds/crd-challenges.yaml +++ b/deploy/crds/crd-challenges.yaml @@ -330,7 +330,7 @@ spec: description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' type: string accessKeyIDSecretRef: - description: 'If set, pull the AWS access key ID from a key within a kubernetes secret. More info: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + description: 'If set, pull the AWS access key ID from a key within a kubernetes secret. see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' type: object required: - name diff --git a/deploy/crds/crd-clusterissuers.yaml b/deploy/crds/crd-clusterissuers.yaml index 65d3ba142..f97293e08 100644 --- a/deploy/crds/crd-clusterissuers.yaml +++ b/deploy/crds/crd-clusterissuers.yaml @@ -365,7 +365,7 @@ spec: description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' type: string accessKeyIDSecretRef: - description: 'If set, pull the AWS access key ID from a key within a kubernetes secret. More info: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + description: 'If set, pull the AWS access key ID from a key within a kubernetes secret. see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' type: object required: - name diff --git a/deploy/crds/crd-issuers.yaml b/deploy/crds/crd-issuers.yaml index 7e8e61c57..d278c485b 100644 --- a/deploy/crds/crd-issuers.yaml +++ b/deploy/crds/crd-issuers.yaml @@ -365,7 +365,7 @@ spec: description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' type: string accessKeyIDSecretRef: - description: 'If set, pull the AWS access key ID from a key within a kubernetes secret. More info: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + description: 'If set, pull the AWS access key ID from a key within a kubernetes secret. see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' type: object required: - name diff --git a/internal/apis/acme/types_issuer.go b/internal/apis/acme/types_issuer.go index 03060af8b..5f781d2a9 100644 --- a/internal/apis/acme/types_issuer.go +++ b/internal/apis/acme/types_issuer.go @@ -403,7 +403,7 @@ type ACMEIssuerDNS01ProviderRoute53 struct { // see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials AccessKeyID string - // The SecretAccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata + // If set, pull the AWS access key ID from a key within a kubernetes secret. More info: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials // https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials SecretAccessKeyID cmmeta.SecretKeySelector diff --git a/internal/apis/acme/v1alpha2/types_issuer.go b/internal/apis/acme/v1alpha2/types_issuer.go index 4e5699489..9d963aa85 100644 --- a/internal/apis/acme/v1alpha2/types_issuer.go +++ b/internal/apis/acme/v1alpha2/types_issuer.go @@ -457,8 +457,8 @@ type ACMEIssuerDNS01ProviderRoute53 struct { // +optional AccessKeyID string `json:"accessKeyID,omitempty"` - // The SecretAccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata - // https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + // If set, pull the AWS access key ID from a key within a kubernetes secret. + // see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials // +optional SecretAccessKeyID cmmeta.SecretKeySelector `json:"accessKeyIDSecretRef"` diff --git a/internal/apis/acme/v1alpha3/types_issuer.go b/internal/apis/acme/v1alpha3/types_issuer.go index 3c3576e98..616d59f4b 100644 --- a/internal/apis/acme/v1alpha3/types_issuer.go +++ b/internal/apis/acme/v1alpha3/types_issuer.go @@ -457,8 +457,8 @@ type ACMEIssuerDNS01ProviderRoute53 struct { // +optional AccessKeyID string `json:"accessKeyID,omitempty"` - // The SecretAccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata - // https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + // If set, pull the AWS access key ID from a key within a kubernetes secret. + // see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials // +optional SecretAccessKeyID cmmeta.SecretKeySelector `json:"accessKeyIDSecretRef"` diff --git a/internal/apis/acme/v1beta1/types_issuer.go b/internal/apis/acme/v1beta1/types_issuer.go index 34ad47617..2b84ca6ab 100644 --- a/internal/apis/acme/v1beta1/types_issuer.go +++ b/internal/apis/acme/v1beta1/types_issuer.go @@ -456,8 +456,8 @@ type ACMEIssuerDNS01ProviderRoute53 struct { // +optional AccessKeyID string `json:"accessKeyID,omitempty"` - // The SecretAccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata - // https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + // If set, pull the AWS access key ID from a key within a kubernetes secret. + // see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials // +optional SecretAccessKeyID cmmeta.SecretKeySelector `json:"accessKeyIDSecretRef"` diff --git a/pkg/apis/acme/v1/types_issuer.go b/pkg/apis/acme/v1/types_issuer.go index a08e57546..2491f9e37 100644 --- a/pkg/apis/acme/v1/types_issuer.go +++ b/pkg/apis/acme/v1/types_issuer.go @@ -460,8 +460,8 @@ type ACMEIssuerDNS01ProviderRoute53 struct { // +optional AccessKeyID string `json:"accessKeyID,omitempty"` - // The SecretAccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata - // https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + // If set, pull the AWS access key ID from a key within a kubernetes secret. + // see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials // +optional SecretAccessKeyID cmmeta.SecretKeySelector `json:"accessKeyIDSecretRef"`