Skip to content
Merged
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
5 changes: 5 additions & 0 deletions terraform/backend.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
terraform {
// Pins major and minor; patch releases are still picked up. Without this the
// dflook plan/apply actions take whatever the latest Terraform release is, so
// CI silently upgraded itself -- state has been written by 1.7 through 1.16.
// This line alone chooses the CI Terraform version.
required_version = "~> 1.16.0"
backend "s3" {
}
}
Expand Down
Loading