Skip to content

Commit c91a398

Browse files
committed
fix wording in desc + doc
1 parent 77c7ea4 commit c91a398

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/resources/lb.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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.

internal/services/lb/lb.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
},

0 commit comments

Comments
 (0)