github.com/hashicorp/packer@v1.14.3/provisioner/powershell/provisioner.hcl2spec.go (about) 1 // Code generated by "packer-sdc mapstructure-to-hcl2"; DO NOT EDIT. 2 3 package powershell 4 5 import ( 6 "github.com/hashicorp/hcl/v2/hcldec" 7 "github.com/zclconf/go-cty/cty" 8 ) 9 10 // FlatConfig is an auto-generated flat version of Config. 11 // Where the contents of a field with a `mapstructure:,squash` tag are bubbled up. 12 type FlatConfig struct { 13 PackerBuildName *string `mapstructure:"packer_build_name" cty:"packer_build_name" hcl:"packer_build_name"` 14 PackerBuilderType *string `mapstructure:"packer_builder_type" cty:"packer_builder_type" hcl:"packer_builder_type"` 15 PackerCoreVersion *string `mapstructure:"packer_core_version" cty:"packer_core_version" hcl:"packer_core_version"` 16 PackerDebug *bool `mapstructure:"packer_debug" cty:"packer_debug" hcl:"packer_debug"` 17 PackerForce *bool `mapstructure:"packer_force" cty:"packer_force" hcl:"packer_force"` 18 PackerOnError *string `mapstructure:"packer_on_error" cty:"packer_on_error" hcl:"packer_on_error"` 19 PackerUserVars map[string]string `mapstructure:"packer_user_variables" cty:"packer_user_variables" hcl:"packer_user_variables"` 20 PackerSensitiveVars []string `mapstructure:"packer_sensitive_variables" cty:"packer_sensitive_variables" hcl:"packer_sensitive_variables"` 21 Inline []string `cty:"inline" hcl:"inline"` 22 Script *string `cty:"script" hcl:"script"` 23 Scripts []string `cty:"scripts" hcl:"scripts"` 24 ValidExitCodes []int `mapstructure:"valid_exit_codes" cty:"valid_exit_codes" hcl:"valid_exit_codes"` 25 Vars []string `mapstructure:"environment_vars" cty:"environment_vars" hcl:"environment_vars"` 26 Env map[string]string `mapstructure:"env" cty:"env" hcl:"env"` 27 EnvVarFormat *string `mapstructure:"env_var_format" cty:"env_var_format" hcl:"env_var_format"` 28 Binary *bool `cty:"binary" hcl:"binary"` 29 RemotePath *string `mapstructure:"remote_path" cty:"remote_path" hcl:"remote_path"` 30 ExecuteCommand *string `mapstructure:"execute_command" cty:"execute_command" hcl:"execute_command"` 31 RemoteEnvVarPath *string `mapstructure:"remote_env_var_path" cty:"remote_env_var_path" hcl:"remote_env_var_path"` 32 ElevatedExecuteCommand *string `mapstructure:"elevated_execute_command" cty:"elevated_execute_command" hcl:"elevated_execute_command"` 33 SkipClean *bool `mapstructure:"skip_clean" cty:"skip_clean" hcl:"skip_clean"` 34 StartRetryTimeout *string `mapstructure:"start_retry_timeout" cty:"start_retry_timeout" hcl:"start_retry_timeout"` 35 ElevatedEnvVarFormat *string `mapstructure:"elevated_env_var_format" cty:"elevated_env_var_format" hcl:"elevated_env_var_format"` 36 ElevatedUser *string `mapstructure:"elevated_user" cty:"elevated_user" hcl:"elevated_user"` 37 ElevatedPassword *string `mapstructure:"elevated_password" cty:"elevated_password" hcl:"elevated_password"` 38 ExecutionPolicy *string `mapstructure:"execution_policy" cty:"execution_policy" hcl:"execution_policy"` 39 DebugMode *int `mapstructure:"debug_mode" cty:"debug_mode" hcl:"debug_mode"` 40 PauseAfter *string `mapstructure:"pause_after" cty:"pause_after" hcl:"pause_after"` 41 UsePwsh *bool `mapstructure:"use_pwsh" cty:"use_pwsh" hcl:"use_pwsh"` 42 } 43 44 // FlatMapstructure returns a new FlatConfig. 45 // FlatConfig is an auto-generated flat version of Config. 46 // Where the contents a fields with a `mapstructure:,squash` tag are bubbled up. 47 func (*Config) FlatMapstructure() interface{ HCL2Spec() map[string]hcldec.Spec } { 48 return new(FlatConfig) 49 } 50 51 // HCL2Spec returns the hcl spec of a Config. 52 // This spec is used by HCL to read the fields of Config. 53 // The decoded values from this spec will then be applied to a FlatConfig. 54 func (*FlatConfig) HCL2Spec() map[string]hcldec.Spec { 55 s := map[string]hcldec.Spec{ 56 "packer_build_name": &hcldec.AttrSpec{Name: "packer_build_name", Type: cty.String, Required: false}, 57 "packer_builder_type": &hcldec.AttrSpec{Name: "packer_builder_type", Type: cty.String, Required: false}, 58 "packer_core_version": &hcldec.AttrSpec{Name: "packer_core_version", Type: cty.String, Required: false}, 59 "packer_debug": &hcldec.AttrSpec{Name: "packer_debug", Type: cty.Bool, Required: false}, 60 "packer_force": &hcldec.AttrSpec{Name: "packer_force", Type: cty.Bool, Required: false}, 61 "packer_on_error": &hcldec.AttrSpec{Name: "packer_on_error", Type: cty.String, Required: false}, 62 "packer_user_variables": &hcldec.AttrSpec{Name: "packer_user_variables", Type: cty.Map(cty.String), Required: false}, 63 "packer_sensitive_variables": &hcldec.AttrSpec{Name: "packer_sensitive_variables", Type: cty.List(cty.String), Required: false}, 64 "inline": &hcldec.AttrSpec{Name: "inline", Type: cty.List(cty.String), Required: false}, 65 "script": &hcldec.AttrSpec{Name: "script", Type: cty.String, Required: false}, 66 "scripts": &hcldec.AttrSpec{Name: "scripts", Type: cty.List(cty.String), Required: false}, 67 "valid_exit_codes": &hcldec.AttrSpec{Name: "valid_exit_codes", Type: cty.List(cty.Number), Required: false}, 68 "environment_vars": &hcldec.AttrSpec{Name: "environment_vars", Type: cty.List(cty.String), Required: false}, 69 "env": &hcldec.AttrSpec{Name: "env", Type: cty.Map(cty.String), Required: false}, 70 "env_var_format": &hcldec.AttrSpec{Name: "env_var_format", Type: cty.String, Required: false}, 71 "binary": &hcldec.AttrSpec{Name: "binary", Type: cty.Bool, Required: false}, 72 "remote_path": &hcldec.AttrSpec{Name: "remote_path", Type: cty.String, Required: false}, 73 "execute_command": &hcldec.AttrSpec{Name: "execute_command", Type: cty.String, Required: false}, 74 "remote_env_var_path": &hcldec.AttrSpec{Name: "remote_env_var_path", Type: cty.String, Required: false}, 75 "elevated_execute_command": &hcldec.AttrSpec{Name: "elevated_execute_command", Type: cty.String, Required: false}, 76 "skip_clean": &hcldec.AttrSpec{Name: "skip_clean", Type: cty.Bool, Required: false}, 77 "start_retry_timeout": &hcldec.AttrSpec{Name: "start_retry_timeout", Type: cty.String, Required: false}, 78 "elevated_env_var_format": &hcldec.AttrSpec{Name: "elevated_env_var_format", Type: cty.String, Required: false}, 79 "elevated_user": &hcldec.AttrSpec{Name: "elevated_user", Type: cty.String, Required: false}, 80 "elevated_password": &hcldec.AttrSpec{Name: "elevated_password", Type: cty.String, Required: false}, 81 "execution_policy": &hcldec.AttrSpec{Name: "execution_policy", Type: cty.String, Required: false}, 82 "debug_mode": &hcldec.AttrSpec{Name: "debug_mode", Type: cty.Number, Required: false}, 83 "pause_after": &hcldec.AttrSpec{Name: "pause_after", Type: cty.String, Required: false}, 84 "use_pwsh": &hcldec.AttrSpec{Name: "use_pwsh", Type: cty.Bool, Required: false}, 85 } 86 return s 87 }