We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cdeb24 commit 7227010Copy full SHA for 7227010
docs/data-sources/instance_variable.md
@@ -13,7 +13,13 @@ The `gitlab_instance_variable` data source allows to retrieve details about an i
13
14
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/instance_level_ci_variables.html)
15
16
+## Example Usage
17
18
+```terraform
19
+data "gitlab_instance_variable" "foo" {
20
+ key = "foo"
21
+}
22
+```
23
24
<!-- schema generated by tfplugindocs -->
25
## Schema
examples/data-sources/gitlab_instance_variable/data-source.tf
@@ -0,0 +1,3 @@
1
2
3
0 commit comments