add autogenerated help for disk_eagerly_scrub
This commit is contained in:
parent
6c749eecf7
commit
94130b5def
|
@ -30,6 +30,7 @@ type FlatConfig struct {
|
||||||
DiskControllerType *string `mapstructure:"disk_controller_type" cty:"disk_controller_type"`
|
DiskControllerType *string `mapstructure:"disk_controller_type" cty:"disk_controller_type"`
|
||||||
DiskSize *int64 `mapstructure:"disk_size" cty:"disk_size"`
|
DiskSize *int64 `mapstructure:"disk_size" cty:"disk_size"`
|
||||||
DiskThinProvisioned *bool `mapstructure:"disk_thin_provisioned" cty:"disk_thin_provisioned"`
|
DiskThinProvisioned *bool `mapstructure:"disk_thin_provisioned" cty:"disk_thin_provisioned"`
|
||||||
|
DiskEagerlyScrub *bool `mapstructure:"disk_eagerly_scrub" cty:"disk_eagerly_scrub"`
|
||||||
Network *string `mapstructure:"network" cty:"network"`
|
Network *string `mapstructure:"network" cty:"network"`
|
||||||
NetworkCard *string `mapstructure:"network_card" cty:"network_card"`
|
NetworkCard *string `mapstructure:"network_card" cty:"network_card"`
|
||||||
NICs []FlatNIC `mapstructure:"network_adapters" cty:"network_adapters"`
|
NICs []FlatNIC `mapstructure:"network_adapters" cty:"network_adapters"`
|
||||||
|
@ -151,6 +152,7 @@ func (*FlatConfig) HCL2Spec() map[string]hcldec.Spec {
|
||||||
"disk_controller_type": &hcldec.AttrSpec{Name: "disk_controller_type", Type: cty.String, Required: false},
|
"disk_controller_type": &hcldec.AttrSpec{Name: "disk_controller_type", Type: cty.String, Required: false},
|
||||||
"disk_size": &hcldec.AttrSpec{Name: "disk_size", Type: cty.Number, Required: false},
|
"disk_size": &hcldec.AttrSpec{Name: "disk_size", Type: cty.Number, Required: false},
|
||||||
"disk_thin_provisioned": &hcldec.AttrSpec{Name: "disk_thin_provisioned", Type: cty.Bool, Required: false},
|
"disk_thin_provisioned": &hcldec.AttrSpec{Name: "disk_thin_provisioned", Type: cty.Bool, Required: false},
|
||||||
|
"disk_eagerly_scrub": &hcldec.AttrSpec{Name: "disk_eagerly_scrub", Type: cty.Bool, Required: false},
|
||||||
"network": &hcldec.AttrSpec{Name: "network", Type: cty.String, Required: false},
|
"network": &hcldec.AttrSpec{Name: "network", Type: cty.String, Required: false},
|
||||||
"network_card": &hcldec.AttrSpec{Name: "network_card", Type: cty.String, Required: false},
|
"network_card": &hcldec.AttrSpec{Name: "network_card", Type: cty.String, Required: false},
|
||||||
"network_adapters": &hcldec.BlockListSpec{TypeName: "network_adapters", Nested: hcldec.ObjectSpec((*FlatNIC)(nil).HCL2Spec())},
|
"network_adapters": &hcldec.BlockListSpec{TypeName: "network_adapters", Nested: hcldec.ObjectSpec((*FlatNIC)(nil).HCL2Spec())},
|
||||||
|
|
|
@ -15,6 +15,7 @@ type FlatCreateConfig struct {
|
||||||
DiskControllerType *string `mapstructure:"disk_controller_type" cty:"disk_controller_type"`
|
DiskControllerType *string `mapstructure:"disk_controller_type" cty:"disk_controller_type"`
|
||||||
DiskSize *int64 `mapstructure:"disk_size" cty:"disk_size"`
|
DiskSize *int64 `mapstructure:"disk_size" cty:"disk_size"`
|
||||||
DiskThinProvisioned *bool `mapstructure:"disk_thin_provisioned" cty:"disk_thin_provisioned"`
|
DiskThinProvisioned *bool `mapstructure:"disk_thin_provisioned" cty:"disk_thin_provisioned"`
|
||||||
|
DiskEagerlyScrub *bool `mapstructure:"disk_eagerly_scrub" cty:"disk_eagerly_scrub"`
|
||||||
Network *string `mapstructure:"network" cty:"network"`
|
Network *string `mapstructure:"network" cty:"network"`
|
||||||
NetworkCard *string `mapstructure:"network_card" cty:"network_card"`
|
NetworkCard *string `mapstructure:"network_card" cty:"network_card"`
|
||||||
NICs []FlatNIC `mapstructure:"network_adapters" cty:"network_adapters"`
|
NICs []FlatNIC `mapstructure:"network_adapters" cty:"network_adapters"`
|
||||||
|
@ -40,6 +41,7 @@ func (*FlatCreateConfig) HCL2Spec() map[string]hcldec.Spec {
|
||||||
"disk_controller_type": &hcldec.AttrSpec{Name: "disk_controller_type", Type: cty.String, Required: false},
|
"disk_controller_type": &hcldec.AttrSpec{Name: "disk_controller_type", Type: cty.String, Required: false},
|
||||||
"disk_size": &hcldec.AttrSpec{Name: "disk_size", Type: cty.Number, Required: false},
|
"disk_size": &hcldec.AttrSpec{Name: "disk_size", Type: cty.Number, Required: false},
|
||||||
"disk_thin_provisioned": &hcldec.AttrSpec{Name: "disk_thin_provisioned", Type: cty.Bool, Required: false},
|
"disk_thin_provisioned": &hcldec.AttrSpec{Name: "disk_thin_provisioned", Type: cty.Bool, Required: false},
|
||||||
|
"disk_eagerly_scrub": &hcldec.AttrSpec{Name: "disk_eagerly_scrub", Type: cty.Bool, Required: false},
|
||||||
"network": &hcldec.AttrSpec{Name: "network", Type: cty.String, Required: false},
|
"network": &hcldec.AttrSpec{Name: "network", Type: cty.String, Required: false},
|
||||||
"network_card": &hcldec.AttrSpec{Name: "network_card", Type: cty.String, Required: false},
|
"network_card": &hcldec.AttrSpec{Name: "network_card", Type: cty.String, Required: false},
|
||||||
"network_adapters": &hcldec.BlockListSpec{TypeName: "network_adapters", Nested: hcldec.ObjectSpec((*FlatNIC)(nil).HCL2Spec())},
|
"network_adapters": &hcldec.BlockListSpec{TypeName: "network_adapters", Nested: hcldec.ObjectSpec((*FlatNIC)(nil).HCL2Spec())},
|
||||||
|
|
|
@ -17,6 +17,8 @@
|
||||||
|
|
||||||
- `disk_thin_provisioned` (bool) - Enable VMDK thin provisioning for VM. Defaults to `false`.
|
- `disk_thin_provisioned` (bool) - Enable VMDK thin provisioning for VM. Defaults to `false`.
|
||||||
|
|
||||||
|
- `disk_eagerly_scrub` (bool) - Enable VMDK eager scrubbing for VM. Defaults to `false`.
|
||||||
|
|
||||||
- `network` (string) - Set network VM will be connected to.
|
- `network` (string) - Set network VM will be connected to.
|
||||||
|
|
||||||
- `network_card` (string) - Set VM network card type. Example `vmxnet3`.
|
- `network_card` (string) - Set VM network card type. Example `vmxnet3`.
|
||||||
|
|
Loading…
Reference in New Issue