File tree Expand file tree Collapse file tree 1 file changed +65
-0
lines changed Expand file tree Collapse file tree 1 file changed +65
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,71 @@ func dataSourceGitlabProject() *schema.Resource {
17
17
Type : schema .TypeInt ,
18
18
Required : true ,
19
19
},
20
+ "name" : {
21
+ Type : schema .TypeString ,
22
+ Optional : true ,
23
+ Computed : true ,
24
+ },
25
+ "path" : {
26
+ Type : schema .TypeString ,
27
+ Optional : true ,
28
+ Computed : true ,
29
+ },
30
+ "description" : {
31
+ Type : schema .TypeString ,
32
+ Optional : true ,
33
+ Computed : true ,
34
+ },
35
+ "default_branch" : {
36
+ Type : schema .TypeString ,
37
+ Optional : true ,
38
+ Computed : true ,
39
+ },
40
+ "issues_enabled" : {
41
+ Type : schema .TypeBool ,
42
+ Optional : true ,
43
+ Computed : true ,
44
+ },
45
+ "merge_requests_enabled" : {
46
+ Type : schema .TypeBool ,
47
+ Optional : true ,
48
+ Computed : true ,
49
+ },
50
+ "wiki_enabled" : {
51
+ Type : schema .TypeBool ,
52
+ Optional : true ,
53
+ Computed : true ,
54
+ },
55
+ "snippets_enabled" : {
56
+ Type : schema .TypeBool ,
57
+ Optional : true ,
58
+ Computed : true ,
59
+ },
60
+ "visibility_level" : {
61
+ Type : schema .TypeString ,
62
+ Optional : true ,
63
+ Computed : true ,
64
+ },
65
+ "namespace_id" : {
66
+ Type : schema .TypeInt ,
67
+ Optional : true ,
68
+ Computed : true ,
69
+ },
70
+ "ssh_url_to_repo" : {
71
+ Type : schema .TypeString ,
72
+ Optional : true ,
73
+ Computed : true ,
74
+ },
75
+ "http_url_to_repo" : {
76
+ Type : schema .TypeString ,
77
+ Optional : true ,
78
+ Computed : true ,
79
+ },
80
+ "web_url" : {
81
+ Type : schema .TypeString ,
82
+ Optional : true ,
83
+ Computed : true ,
84
+ },
20
85
},
21
86
}
22
87
}
You can’t perform that action at this time.
0 commit comments