mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
fixed ipv6 - changed to Computed like ipv4 (#6480)
This commit is contained in:
parent
8821aea945
commit
83f87e3741
@ -296,13 +296,13 @@ func resourceVSphereVirtualMachine() *schema.Resource {
|
|||||||
"ipv6_address": &schema.Schema{
|
"ipv6_address": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
ForceNew: true,
|
Computed: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
"ipv6_prefix_length": &schema.Schema{
|
"ipv6_prefix_length": &schema.Schema{
|
||||||
Type: schema.TypeInt,
|
Type: schema.TypeInt,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
ForceNew: true,
|
Computed: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
"ipv6_gateway": &schema.Schema{
|
"ipv6_gateway": &schema.Schema{
|
||||||
|
Loading…
Reference in New Issue
Block a user