-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stuart Auld
committed
Apr 18, 2018
1 parent
fba737e
commit f5afb72
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,11 @@ resource "buildkite_pipeline" "example" { | |
organization = "my-org" | ||
name = "My great pipeline" | ||
repository = "[email protected]:myorg/my-repo.git" | ||
step { | ||
steps = [{ | ||
type = "script" | ||
name = "Hi!" | ||
command = "echo \"Hello world\"" | ||
} | ||
}] | ||
} | ||
``` | ||
|
||
|
@@ -30,7 +30,7 @@ resource "buildkite_pipeline" "example" { | |
* `organization` - (Required) The name of the organization to which the pipeline is associated | ||
* `name` - (Required) The pipeline name | ||
* `repository` - (Required) The git repository associated with the pipeline | ||
* `step` - (Required) At least one step block as documented below | ||
* `steps` - (Required) At list of step blocks as documented below | ||
* `description` - (Optional, Forces new resource) The pipeline description | ||
* `env` - (Optional, Forces new resource) A map of ENV key/value pairs that apply to the whole pipeline | ||
* `provider_settings` - (Optional, Forces new resource) A map of key/bool provider_settings. Provider specific and are not well documented. | ||
|