Skip to content

Commit

Permalink
allow patch versions to increment
Browse files Browse the repository at this point in the history
  • Loading branch information
alismx committed Nov 12, 2024
1 parent 942a908 commit 8dd94d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.56.1"
version = "~> 5.56.1"
}
dockerless = {
source = "nullstone-io/dockerless"
version = "0.1.1"
version = "~> 0.1.1"
}
null = {
source = "hashicorp/null"
version = "3.2.3"
version = "~> 3.2.3"
}
random = {
source = "hashicorp/random"
version = "3.6.3"
version = "~> 3.6.3"
}
}
required_version = "1.9.8"
required_version = "~> 1.9.0"
}

provider "dockerless" {
Expand Down

0 comments on commit 8dd94d2

Please sign in to comment.