Skip to content

Commit

Permalink
Added pessimistic operator for Terraform cli and provider
Browse files Browse the repository at this point in the history
  • Loading branch information
dunefro committed Nov 8, 2024
1 parent b9678da commit 0bddd2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
terraform {
required_version = ">= 1.4"
required_version = "~> 1.4"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">=5.57.0"
version = "~> 5.57"
}
random = {
source = "hashicorp/random"
version = "3.6.2"
version = "~> 3.6"
}
}
}

0 comments on commit 0bddd2a

Please sign in to comment.