forked from frightenedmonkey/packer-provisioner-goss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packer-provisioner-goss.hcl2spec.go
70 lines (66 loc) · 4.18 KB
/
packer-provisioner-goss.hcl2spec.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Code generated by "mapstructure-to-hcl2 -type GossConfig"; DO NOT EDIT.
package main
import (
"github.com/hashicorp/hcl/v2/hcldec"
"github.com/zclconf/go-cty/cty"
)
// FlatGossConfig is an auto-generated flat version of GossConfig.
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type FlatGossConfig struct {
Version *string `cty:"version"`
Arch *string `cty:"arch"`
URL *string `cty:"url"`
DownloadPath *string `cty:"download_path"`
Username *string `cty:"username"`
Password *string `cty:"password"`
SkipInstall *bool `cty:"skip_install"`
Tests []string `cty:"tests"`
RetryTimeout *string `mapstructure:"retry_timeout" cty:"retry_timeout"`
Sleep *string `mapstructure:"sleep" cty:"sleep"`
UseSudo *bool `mapstructure:"use_sudo" cty:"use_sudo"`
SkipSSLChk *bool `mapstructure:"skip_ssl" cty:"skip_ssl"`
GossFile *string `mapstructure:"goss_file" cty:"goss_file"`
VarsFile *string `mapstructure:"vars_file" cty:"vars_file"`
VarsInline map[string]string `mapstructure:"vars_inline" cty:"vars_inline"`
VarsEnv map[string]string `mapstructure:"vars_env" cty:"vars_env"`
RemoteFolder *string `mapstructure:"remote_folder" cty:"remote_folder"`
RemotePath *string `mapstructure:"remote_path" cty:"remote_path"`
Format *string `mapstructure:"format" cty:"format"`
FormatOptions *string `mapstructure:"format_options" cty:"format_options"`
Inspect *bool `cty:"inspect"`
}
// FlatMapstructure returns a new FlatGossConfig.
// FlatGossConfig is an auto-generated flat version of GossConfig.
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
func (*GossConfig) FlatMapstructure() interface{ HCL2Spec() map[string]hcldec.Spec } {
return new(FlatGossConfig)
}
// HCL2Spec returns the hcl spec of a GossConfig.
// This spec is used by HCL to read the fields of GossConfig.
// The decoded values from this spec will then be applied to a FlatGossConfig.
func (*FlatGossConfig) HCL2Spec() map[string]hcldec.Spec {
s := map[string]hcldec.Spec{
"version": &hcldec.AttrSpec{Name: "version", Type: cty.String, Required: false},
"arch": &hcldec.AttrSpec{Name: "arch", Type: cty.String, Required: false},
"url": &hcldec.AttrSpec{Name: "url", Type: cty.String, Required: false},
"download_path": &hcldec.AttrSpec{Name: "download_path", Type: cty.String, Required: false},
"username": &hcldec.AttrSpec{Name: "username", Type: cty.String, Required: false},
"password": &hcldec.AttrSpec{Name: "password", Type: cty.String, Required: false},
"skip_install": &hcldec.AttrSpec{Name: "skip_install", Type: cty.Bool, Required: false},
"tests": &hcldec.AttrSpec{Name: "tests", Type: cty.List(cty.String), Required: false},
"retry_timeout": &hcldec.AttrSpec{Name: "retry_timeout", Type: cty.String, Required: false},
"sleep": &hcldec.AttrSpec{Name: "sleep", Type: cty.String, Required: false},
"use_sudo": &hcldec.AttrSpec{Name: "use_sudo", Type: cty.Bool, Required: false},
"skip_ssl": &hcldec.AttrSpec{Name: "skip_ssl", Type: cty.Bool, Required: false},
"goss_file": &hcldec.AttrSpec{Name: "goss_file", Type: cty.String, Required: false},
"vars_file": &hcldec.AttrSpec{Name: "vars_file", Type: cty.String, Required: false},
"vars_inline": &hcldec.AttrSpec{Name: "vars_inline", Type: cty.Map(cty.String), Required: false},
"vars_env": &hcldec.AttrSpec{Name: "vars_env", Type: cty.Map(cty.String), Required: false},
"remote_folder": &hcldec.AttrSpec{Name: "remote_folder", Type: cty.String, Required: false},
"remote_path": &hcldec.AttrSpec{Name: "remote_path", Type: cty.String, Required: false},
"format": &hcldec.AttrSpec{Name: "format", Type: cty.String, Required: false},
"format_options": &hcldec.AttrSpec{Name: "format_options", Type: cty.String, Required: false},
"inspect": &hcldec.AttrSpec{Name: "inspect", Type: cty.Bool, Required: false},
}
return s
}