File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,9 @@ In addition to all arguments above, the following attributes are exported:
129129- ` private_network ` - List of private networks connected to your load balancer.
130130 - ` status ` - The status of the private network connection.
131131 - ` zone ` - (Defaults to [ provider] ( ../index.md#zone ) ` zone ` ) The [ zone] ( ../guides/regions_and_zones.md#zones ) in which the private network was created.
132- - ` private_ip ` - The list of private IPv4 addresses associated with the resource.
133- - ` id ` - The ID of the IPv4 address resource.
134- - ` address ` - The private IPv4 address.
132+ - ` private_ips ` - The list of private IPv4 and IPv6 addresses associated with the resource.
133+ - ` id ` - The ID of the IP address resource.
134+ - ` address ` - The private IP address.
135135- ` organization_id ` - The ID of the Organization ID the Load Balancer is associated with.
136136
137137~ > ** Important:** ` release_ip ` will not be supported. This prevents the destruction of the IP from releasing a Load Balancer.
Original file line number Diff line number Diff line change @@ -204,18 +204,18 @@ func ResourceLb() *schema.Resource {
204204 "private_ips" : {
205205 Type : schema .TypeList ,
206206 Computed : true ,
207- Description : "List of private IPv4 addresses associated with the resource" ,
207+ Description : "List of private IPv4 and IPv6 addresses associated with the resource" ,
208208 Elem : & schema.Resource {
209209 Schema : map [string ]* schema.Schema {
210210 "id" : {
211211 Type : schema .TypeString ,
212212 Computed : true ,
213- Description : "The ID of the IPv4 address resource" ,
213+ Description : "The ID of the IP address resource" ,
214214 },
215215 "address" : {
216216 Type : schema .TypeString ,
217217 Computed : true ,
218- Description : "The private IPv4 address" ,
218+ Description : "The private IP address" ,
219219 },
220220 },
221221 },
You can’t perform that action at this time.
0 commit comments