Skip to content

Commit

Permalink
Merge pull request #269 from buildkite/fix/Readme-Steps-Optional
Browse files Browse the repository at this point in the history
SUP-906/Fix: Adjustment of README version, Pipeline Argument Reference amendments
  • Loading branch information
james2791 authored May 5, 2023
2 parents 196c2fd + 5ce6237 commit 5cea848
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ terraform {
required_providers {
buildkite = {
source = "buildkite/buildkite"
version = "0.12.0"
version = "0.17.1"
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion docs/resources/pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ resource "buildkite_pipeline" "repo2-release" {

- `name` - (Required) The name of the pipeline.
- `repository` - (Required) The git URL of the repository.
- `steps` - (Required) The string YAML steps to run the pipeline.
- `steps` - (Optional) The string YAML steps to run the pipeline. Defaults to `buildkite-agent pipeline upload` if not specified.
- `description` - (Optional) A description of the pipeline.
- `default_branch` - (Optional) The default branch to prefill when new builds are created or triggered, usually main or master but can be anything.
- `default_timeout_in_minutes` - (Optional) The default timeout for commands in this pipeline, in minutes.
Expand All @@ -102,6 +102,7 @@ resource "buildkite_pipeline" "repo2-release" {
- `allow_rebuilds` - (Optional, Default: `true` ) A boolean on whether or not to allow rebuilds for the pipeline.
- `cluster_id` - (Optional) The GraphQL ID of the cluster you want to use for the pipeline.
- `team` - (Optional) Set team access for the pipeline. Can be specified multiple times for each team. See [Teams Configuration](#team) below for details.
- `tags` - (Optional) A set of tags to be set to the pipeline. For example `["terraform", "provider"]`.
- `provider_settings` - (Optional) Source control provider settings for the pipeline. See [Provider Settings Configuration](#provider-settings-configuration) below for details.
- `deletion_protection` - (Optional) Set to either `true` or `false`. When set to `true`, `destroy` actions on a pipeline will be blocked and fail with a message "Deletion protection is enabled for pipeline: <pipeline name>"

Expand Down

0 comments on commit 5cea848

Please sign in to comment.