command/cliconfig: Remove redundant struct types

These were being used in an earlier iteration of the provider installation
configuration but it was all collapsed down into a single
ProviderInstallationMethod type later, making these redundant.
This commit is contained in:
Martin Atkins 2020-04-22 18:53:12 -07:00
parent dadec6ee9e
commit 622abf707d
1 changed files with 0 additions and 16 deletions

View File

@ -63,22 +63,6 @@ type ConfigCredentialsHelper struct {
Args []string `hcl:"args"`
}
// ConfigProviderInstallationFilesystemMirror represents a "filesystem_mirror"
// block inside ConfigProviderInstallation.
type ConfigProviderInstallationFilesystemMirror struct {
Path string `hcl:"path"`
Include []string `hcl:"include"`
Exclude []string `hcl:"exclude"`
}
// ConfigProviderInstallationNetworkMirror represents a "network_mirror" block
// inside ConfigProviderInstallation.
type ConfigProviderInstallationNetworkMirror struct {
Hostname string `hcl:"hostname"`
Include []string `hcl:"include"`
Exclude []string `hcl:"exclude"`
}
// BuiltinConfig is the built-in defaults for the configuration. These
// can be overridden by user configurations.
var BuiltinConfig Config