@@ -11,23 +11,33 @@ import (
1111func dataSourceGithubApp () * schema.Resource {
1212 return & schema.Resource {
1313 ReadContext : dataSourceGithubAppRead ,
14+ Description : "Get information about an app." ,
1415
1516 Schema : map [string ]* schema.Schema {
17+ "id" : {
18+ Type : schema .TypeString ,
19+ Computed : true ,
20+ Description : "The ID of the app." ,
21+ },
1622 "slug" : {
17- Type : schema .TypeString ,
18- Required : true ,
23+ Type : schema .TypeString ,
24+ Required : true ,
25+ Description : "The URL-friendly name of your GitHub App." ,
1926 },
2027 "description" : {
21- Type : schema .TypeString ,
22- Computed : true ,
28+ Type : schema .TypeString ,
29+ Computed : true ,
30+ Description : "The app's description." ,
2331 },
2432 "name" : {
25- Type : schema .TypeString ,
26- Computed : true ,
33+ Type : schema .TypeString ,
34+ Computed : true ,
35+ Description : "The app's full name." ,
2736 },
2837 "node_id" : {
29- Type : schema .TypeString ,
30- Computed : true ,
38+ Type : schema .TypeString ,
39+ Computed : true ,
40+ Description : "The Node ID of the app." ,
3141 },
3242 },
3343 }
0 commit comments