Skip to content

Commit

Permalink
fix: bump lacework provider min version to '~> 1.15' (#111)
Browse files Browse the repository at this point in the history
The PR #97 used a new resource `lacework_external_id ` which is only available from version `1.15.0` and above but we forgot to bump the min version, this causes issues like #107 where users might be using an older version of the Lacework provider that does not have this new resource.

The fix is to update the version constraint to `~> 1.15`

Note: If you don't know about the pessimistic constraint, please read this doc:

https://developer.hashicorp.com/terraform/language/expressions/version-constraints#version-constraint-syntax

Closes #107

Signed-off-by: Salim Afiune Maya <[email protected]>
  • Loading branch information
afiune authored Oct 16, 2023
1 parent b7bc7e2 commit 3d450a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ A Terraform Module to configure the Lacework Agentless Scanner.
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.15.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0 |
| <a name="requirement_lacework"></a> [lacework](#requirement\_lacework) | ~> 1.8 |
| <a name="requirement_lacework"></a> [lacework](#requirement\_lacework) | ~> 1.15 |
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.1 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.0 |
| <a name="provider_lacework"></a> [lacework](#provider\_lacework) | ~> 1.8 |
| <a name="provider_lacework"></a> [lacework](#provider\_lacework) | ~> 1.15 |
| <a name="provider_null"></a> [null](#provider\_null) | n/a |
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.1 |

Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
random = ">= 2.1"
lacework = {
source = "lacework/lacework"
version = "~> 1.8"
version = "~> 1.15"
}
}
}

0 comments on commit 3d450a9

Please sign in to comment.