Skip to content

Commit 042d621

Browse files
Merge pull request #92 from socraticDevBlog/20250325-upgradedependencies
fix: mettre à jour les versions de Terraform et des fournisseurs dans…
2 parents 3a84d93 + f9afc27 commit 042d621

File tree

4 files changed

+91
-5
lines changed

4 files changed

+91
-5
lines changed

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Setup Terraform
5050
uses: hashicorp/setup-terraform@v2
5151
with:
52-
terraform_version: 1.9.7
52+
terraform_version: 1.11.2
5353

5454
- name: Terraform fmt
5555
id: fmt

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ src.zip
165165
terraform-provider*
166166
.terraform*
167167
!.terraformignore
168+
!.terraform.lock.hcl
168169
*.zip
169170

170171
creds

terraform/.terraform.lock.hcl

Lines changed: 85 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

terraform/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = "5.75.0"
5+
version = "5.92.0"
66
}
77
random = {
88
source = "hashicorp/random"
9-
version = "3.6.3"
9+
version = "3.7.1"
1010
}
1111
archive = {
1212
source = "hashicorp/archive"
13-
version = "2.6.0"
13+
version = "2.7.0"
1414
}
1515
local = {
1616
source = "hashicorp/local"
1717
version = "2.5.2"
1818
}
1919
}
2020

21-
required_version = "1.9.7"
21+
required_version = "1.11.2"
2222
}
2323

2424
provider "aws" {

0 commit comments

Comments
 (0)