Skip to content

Commit 83f87e3

Browse files
thetuxkeeperstack72
authored andcommitted
fixed ipv6 - changed to Computed like ipv4 (hashicorp#6480)
1 parent 8821aea commit 83f87e3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

builtin/providers/vsphere/resource_vsphere_virtual_machine.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,13 +296,13 @@ func resourceVSphereVirtualMachine() *schema.Resource {
296296
"ipv6_address": &schema.Schema{
297297
Type: schema.TypeString,
298298
Optional: true,
299-
ForceNew: true,
299+
Computed: true,
300300
},
301301

302302
"ipv6_prefix_length": &schema.Schema{
303303
Type: schema.TypeInt,
304304
Optional: true,
305-
ForceNew: true,
305+
Computed: true,
306306
},
307307

308308
"ipv6_gateway": &schema.Schema{

0 commit comments

Comments
 (0)