@@ -34,36 +34,43 @@ func DataSourceFlexibleIPs() *schema.Resource {
3434 Description : "Flexible IPs with these exact tags are listed" ,
3535 },
3636 "ips" : {
37- Type : schema .TypeList ,
38- Computed : true ,
37+ Type : schema .TypeList ,
38+ Description : "List of flexible IPs" ,
39+ Computed : true ,
3940 Elem : & schema.Resource {
4041 Schema : map [string ]* schema.Schema {
4142 "id" : {
42- Computed : true ,
43- Type : schema .TypeString ,
43+ Computed : true ,
44+ Description : "ID of the flexible IP" ,
45+ Type : schema .TypeString ,
4446 },
4547 "description" : {
46- Computed : true ,
47- Type : schema .TypeString ,
48+ Computed : true ,
49+ Description : "Description of the flexible IP" ,
50+ Type : schema .TypeString ,
4851 },
4952 "tags" : {
50- Computed : true ,
51- Type : schema .TypeList ,
53+ Computed : true ,
54+ Description : "List of flexible IP tags" ,
55+ Type : schema .TypeList ,
5256 Elem : & schema.Schema {
5357 Type : schema .TypeString ,
5458 },
5559 },
5660 "status" : {
57- Computed : true ,
58- Type : schema .TypeString ,
61+ Computed : true ,
62+ Description : "Status of the flexible IP" ,
63+ Type : schema .TypeString ,
5964 },
6065 "ip_address" : {
61- Computed : true ,
62- Type : schema .TypeString ,
66+ Computed : true ,
67+ Description : "IP address of the flexible IP" ,
68+ Type : schema .TypeString ,
6369 },
6470 "reverse" : {
65- Computed : true ,
66- Type : schema .TypeString ,
71+ Computed : true ,
72+ Description : "Reverse DNS of the flexible IP" ,
73+ Type : schema .TypeString ,
6774 },
6875 "mac_address" : {
6976 Type : schema .TypeList ,
@@ -106,12 +113,14 @@ func DataSourceFlexibleIPs() *schema.Resource {
106113 },
107114 },
108115 "created_at" : {
109- Computed : true ,
110- Type : schema .TypeString ,
116+ Computed : true ,
117+ Description : "Date on which the flexible IP was created (RFC 3339 format)" ,
118+ Type : schema .TypeString ,
111119 },
112120 "updated_at" : {
113- Computed : true ,
114- Type : schema .TypeString ,
121+ Computed : true ,
122+ Description : "Date on which the flexible IP was last updated (RFC 3339 format)" ,
123+ Type : schema .TypeString ,
115124 },
116125 "zone" : zonal .ComputedSchema (),
117126 "organization_id" : account .OrganizationIDSchema (),
0 commit comments