Skip to content

Commit 773846a

Browse files
committed
feat: Add support for provider 5.x
1 parent ea471da commit 773846a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

test/unit-complete/provider.tf

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ terraform {
66
required_providers {
77
github = {
88
source = "integrations/github"
9-
version = "~> 4.19"
9+
version = "~> 5.0"
10+
}
11+
tls = {
12+
source = "hashicorp/tls"
13+
version = "~> 2.1"
1014
}
11-
tls = "~> 2.1"
1215
}
1316
}

versions.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@
55
terraform {
66
required_version = "~> 1.0"
77

8-
# 4.7.0 to 4.9.1 has a security regression: new repositories created via a
9-
# template have a public visibility. Has been fixed in 4.9.2.
108
required_providers {
119
github = {
1210
source = "integrations/github"
13-
version = "~> 4.20"
11+
version = ">= 4.20, < 6.0"
1412
}
1513
}
1614
}

0 commit comments

Comments
 (0)