Skip to content

Commit 622abf7

Browse files
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.
1 parent dadec6e commit 622abf7

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

command/cliconfig/cliconfig.go

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,6 @@ type ConfigCredentialsHelper struct {
6363
Args []string `hcl:"args"`
6464
}
6565

66-
// ConfigProviderInstallationFilesystemMirror represents a "filesystem_mirror"
67-
// block inside ConfigProviderInstallation.
68-
type ConfigProviderInstallationFilesystemMirror struct {
69-
Path string `hcl:"path"`
70-
Include []string `hcl:"include"`
71-
Exclude []string `hcl:"exclude"`
72-
}
73-
74-
// ConfigProviderInstallationNetworkMirror represents a "network_mirror" block
75-
// inside ConfigProviderInstallation.
76-
type ConfigProviderInstallationNetworkMirror struct {
77-
Hostname string `hcl:"hostname"`
78-
Include []string `hcl:"include"`
79-
Exclude []string `hcl:"exclude"`
80-
}
81-
8266
// BuiltinConfig is the built-in defaults for the configuration. These
8367
// can be overridden by user configurations.
8468
var BuiltinConfig Config

0 commit comments

Comments
 (0)