You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,28 @@
3
3
BACKWARDS INCOMPATIBILITIES:
4
4
5
5
* This provider now uses the v4 api. It means that if you set up a custom API url, you need to update it to use the /api/v4 url. As a side effect, we no longer support Gitlab < 9.0. [GH-20]
6
+
* We now support Parent ID for `gitlab_groups`. However, due to a limitation in
7
+
the gitlab API, changing a Parent ID requires destroying and recreating the
8
+
group. Since previous versions of this provider did not support it, there are
9
+
chances that terraform will try do delete all your nested group when you
10
+
update to 0.2.0. A workaround to prevent this is to use the `ignore_changes`
11
+
lifecycle parameter. [GH-28]
12
+
13
+
```
14
+
resource "gitlab_group" "nested_group" {
15
+
name = "bar-name-%d"
16
+
path = "bar-path-%d"
17
+
lifecycle {
18
+
ignore_changes = ["parent_id"]
19
+
}
20
+
}
21
+
```
6
22
7
23
IMPROVEMENTS:
8
24
9
25
* Add `cacert_file` and `insecure` options to the provider. [GH-5]
10
26
* Fix race conditions with `gitlab_projects` deletion. [GH-19]
27
+
* Add `parent_id` argument to `gitlab_group`. [GH-28]
0 commit comments