You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resource "buildkite_pipeline" "terraform_test" {
name = "terraform-test"
repository = "[email protected]:you/repo.git"
step = [
{
type = "script"
name = ":llama: Tests"
command = "echo Hello world!"
},
]
}
When applying with terraform 0.12, it would yield following error:
Error: Unsupported argument
on demo.tf line 5, in resource "buildkite_pipeline" "terraform_test":
5: step = {
An argument named "step" is not expected here. Did you mean to define a block
of type "step"?
Context
Given:
When applying with terraform 0.12, it would yield following error:
It might be related to the breaking syntax changes. Ref: https://www.terraform.io/docs/extend/terraform-0.12-compatibility.html#configuration-syntax-changes
The text was updated successfully, but these errors were encountered: