Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a typo in the signed pipelines data source #438

Merged
merged 2 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## [v1.1.1](https://github.com/buildkite/terraform-provider-buildkite/compare/v1.1.1...v1.1.1)

- Fix a typo in the signed pipelines data source [[PR #438](https://github.com/buildkite/terraform-provider-buildkite/pull/438)]

## [v1.1.0](https://github.com/buildkite/terraform-provider-buildkite/compare/v1.0.6...v1.1.0)

- Bump google.golang.org/grpc from 1.58.2 to 1.58.3 [[PR #435](https://github.com/buildkite/terraform-provider-buildkite/pull/435)]
Expand Down
2 changes: 1 addition & 1 deletion buildkite/data_source_signed_pipeline_steps.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (s *signedPipelineStepsDataSource) Schema(
`
Use this data source to sign pipeline steps with a JWKS key. You will need to have
the corresponding verification key present on the agents that run this the steps in
this pipeline. You can use then use these steps in a %s resource.
this pipeline. You can then use these steps in a %s resource.

See [RFC 7517](https://datatracker.ietf.org/doc/html/rfc7517) for more information
about the JWKS format.
Expand Down
4 changes: 2 additions & 2 deletions docs/data-sources/signed_pipeline_steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ subcategory: ""
description: |-
Use this data source to sign pipeline steps with a JWKS key. You will need to have
the corresponding verification key present on the agents that run this the steps in
this pipeline. You can use then use these steps in a buildkite_pipeline resource.
this pipeline. You can then use these steps in a buildkite_pipeline resource.
See RFC 7517 https://datatracker.ietf.org/doc/html/rfc7517 for more information
about the JWKS format.
See the Buildkite documentation https://buildkite.com/docs/agent/v3/signed_pipelines
Expand All @@ -16,7 +16,7 @@ description: |-

Use this data source to sign pipeline steps with a JWKS key. You will need to have
the corresponding verification key present on the agents that run this the steps in
this pipeline. You can use then use these steps in a `buildkite_pipeline` resource.
this pipeline. You can then use these steps in a `buildkite_pipeline` resource.

See [RFC 7517](https://datatracker.ietf.org/doc/html/rfc7517) for more information
about the JWKS format.
Expand Down