Skip to content

Commit ad0d911

Browse files
author
Julien Pivotto
committed
Add changelog for #28
Signed-off-by: Julien Pivotto <[email protected]>
1 parent 4742657 commit ad0d911

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,28 @@
33
BACKWARDS INCOMPATIBILITIES:
44

55
* 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+
```
622

723
IMPROVEMENTS:
824

925
* Add `cacert_file` and `insecure` options to the provider. [GH-5]
1026
* Fix race conditions with `gitlab_projects` deletion. [GH-19]
27+
* Add `parent_id` argument to `gitlab_group`. [GH-28]
1128

1229
## 0.1.0 (June 20, 2017)
1330

0 commit comments

Comments
 (0)