Skip to content

Commit

Permalink
feat: Add support for AWS provider 5.0 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxymVlasov authored Jun 1, 2023
1 parent 4bfe8b4 commit 006c2f3
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@ terraform {
required_version = ">= 0.14"

required_providers {
aws = "~> 4.0"
random = ">= 2.1"
time = "~> 0.6"
aws = {
source = "hashicorp/aws"
version = ">= 4.0"
}
random = {
source = "hashicorp/random"
version = ">= 2.1"
}
time = {
source = "hashicorp/time"
version = "~> 0.6"
}
lacework = {
source = "lacework/lacework"
version = "~> 1.0"
Expand Down

0 comments on commit 006c2f3

Please sign in to comment.