Skip to content

Commit

Permalink
set plugin version constraint to < 5 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
saidsef authored Oct 19, 2023
1 parent a491928 commit 6665a56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: true
matrix:
tf-version: ["1.0", "1.1", "1.2", "1.3", "1.4", "latest"]
tf-version: ["1.0", "1.1", "1.2", "1.3", "1.4", "1.5", "latest"]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4"
version = ">= 4, < 5"
}

tls = {
source = "hashicorp/tls"
version = ">= 4"
version = ">= 4, < 5"
}
}
required_version = "~> 1"
Expand Down

0 comments on commit 6665a56

Please sign in to comment.