Skip to content

Commit 261c04c

Browse files
committed
Fix gitlab versioning errors with terraform 0.13
1 parent 9d4e8eb commit 261c04c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

examples/gitlab-repository-webhook/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Note that this example may create resources which cost money. Run `terraform des
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
2323
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.45 |
24-
| <a name="requirement_gitlab"></a> [gitlab](#requirement\_gitlab) | >= 3.0 |
24+
| <a name="requirement_gitlab"></a> [gitlab](#requirement\_gitlab) | 3.20.0 |
2525

2626
## Providers
2727

examples/gitlab-repository-webhook/versions.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ terraform {
88
}
99

1010
gitlab = {
11+
# gitlab provider requires terraform 1.0 or later starting in 15.x.x
1112
source = "gitlabhq/gitlab"
12-
version = ">= 3.0"
13+
version = "3.20.0"
1314
}
1415
}
1516
}

0 commit comments

Comments
 (0)