File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,21 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = "= 5.31.0"
5+
version = "~> 5.59.0"
6+
}
7+
8+
random = {
9+
source = "hashicorp/random"
10+
version = "~> 3.6.2"
611
}
712
}
813
}
14+
915
provider "aws" {
1016
region = "us-east-1"
1117
}
1218

1319
provider "random" {
14-
version = "3.1.0"
1520
}
1621

1722
resource "random_pet" "random_name" {

0 commit comments

Comments
 (0)