regenerate code

This commit is contained in:
Megan Marsh 2020-11-19 15:16:52 -08:00
parent 56a45b04ab
commit f81ed344a2
1 changed files with 8 additions and 8 deletions

View File

@ -98,7 +98,7 @@ type FlatMockProvisioner struct {
PrepConfigs []interface{} `cty:"prep_configs" hcl:"prep_configs"`
ProvCalled *bool `cty:"prov_called" hcl:"prov_called"`
ProvRetried *bool `cty:"prov_retried" hcl:"prov_retried"`
ProvCommunicator *packer.Communicator `cty:"prov_communicator" hcl:"prov_communicator"`
ProvCommunicator packer.Communicator `cty:"prov_communicator" hcl:"prov_communicator"`
ProvUi packer.Ui `cty:"prov_ui" hcl:"prov_ui"`
}
@ -118,7 +118,7 @@ func (*FlatMockProvisioner) HCL2Spec() map[string]hcldec.Spec {
"prep_configs": &hcldec.AttrSpec{Name: "prep_configs", Type: cty.Bool, Required: false}, /* TODO(azr): could not find type */
"prov_called": &hcldec.AttrSpec{Name: "prov_called", Type: cty.Bool, Required: false},
"prov_retried": &hcldec.AttrSpec{Name: "prov_retried", Type: cty.Bool, Required: false},
"prov_communicator": &hcldec.AttrSpec{Name: "prov_communicator", Type: cty.String, Required: false},
"prov_communicator": &hcldec.AttrSpec{Name: "prov_communicator", Type: cty.Bool, Required: false}, /* TODO(azr): could not find type */
"prov_ui": &hcldec.AttrSpec{Name: "prov_ui", Type: cty.Bool, Required: false}, /* TODO(azr): could not find type */
}
return s