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
-`approval_status` (String) The approval status of the license. Valid values are: `approved`, `blacklisted`, `allowed`, `denied`. "approved" and "blacklisted"
41
-
have been deprecated in favor of "allowed" and "denied"; use "allowed" and "denied" for GitLab versions 15.0 and higher.
40
+
-`approval_status` (String) The approval status of the license. Valid values are: `approved`, `blacklisted`, `allowed`, `denied`. "approved" and "blacklisted"
41
+
have been deprecated in favor of "allowed" and "denied"; use "allowed" and "denied" for GitLab versions 15.0 and higher.
42
42
Prior to version 15.0 and after 14.6, the values are equivalent.
43
43
-`name` (String) The name of the managed license (I.e., 'Apache License 2.0' or 'MIT license')
44
44
-`project` (String) The ID of the project under which the managed license will be created.
description = "In computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions."
-`avatar_hash` (String) The hash of the avatar image. Use `filesha256("path/to/avatar.png")` whenever possible. **Note**: this is used to trigger an update of the avatar. If it's not given, but an avatar is given, the avatar will be updated each time.
44
45
-`description` (String) A text describing the topic.
45
46
-`soft_destroy` (Boolean, Deprecated) Empty the topics fields instead of deleting it.
47
+
-`title` (String) The topic's description. Requires at least GitLab 15.0 for which it's a required argument.
Copy file name to clipboardExpand all lines: examples/resources/gitlab_topic/resource.tf
+2-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
resource"gitlab_topic""functional_programming" {
2
-
name="Functional Programming"
2
+
name="functional-programming"
3
+
title="Functional Programming"
3
4
description="In computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions."
0 commit comments