Skip to content

Commit

Permalink
Sets up command for Equinix Metal provider
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarhee committed Apr 3, 2021
1 parent 30e5d07 commit a603fc5
Show file tree
Hide file tree
Showing 4 changed files with 284 additions and 0 deletions.
46 changes: 46 additions & 0 deletions cmd/provider_cmd_equinixmetal.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// Copyright 2021 The Terraformer Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cmd

import (
equinixmetal_terraforming "github.com/GoogleCloudPlatform/terraformer/providers/equinixmetal"

"github.com/GoogleCloudPlatform/terraformer/terraformutils"
"github.com/spf13/cobra"
)

func newCmdEquinixMetalImporter(options ImportOptions) *cobra.Command {
cmd := &cobra.Command{
Use: "metal",
Short: "Import current state to Terraform configuration from Equinix Metal",
Long: "Import current state to Terraform configuration from Equinix Metal",
RunE: func(cmd *cobra.Command, args []string) error {
provider := newEquinixMetalProvider()
err := Import(provider, options, []string{})
if err != nil {
return err
}
return nil
},
}

cmd.AddCommand(listCmd(newEquinixMetalProvider()))
baseProviderFlags(cmd.PersistentFlags(), &options, "project,device", "project=name1:name2:name3")

return cmd
}

func newEquinixMetalProvider() terraformutils.ProviderGenerator {
return &equinixmetal_terraforming.EquinixMetalProvider{}
}
2 changes: 2 additions & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ func providerImporterSubcommands() []func(options ImportOptions) *cobra.Command
newCmdIbmImporter,
// Cloud
newCmdDigitalOceanImporter,
newCmdEquinixMetalImporter,
newCmdFastlyImporter,
newCmdHerokuImporter,
newCmdLinodeImporter,
Expand Down Expand Up @@ -85,6 +86,7 @@ func providerGenerators() map[string]func() terraformutils.ProviderGenerator {
newIbmProvider,
// Cloud
newDigitalOceanProvider,
newEquinixMetalProvider,
newFastlyProvider,
newHerokuProvider,
newLinodeProvider,
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ require (
github.com/linode/linodego v0.24.1
github.com/mrparkers/terraform-provider-keycloak v0.0.0-20200506151941-509881368409
github.com/ns1/ns1-go v2.4.0+incompatible
github.com/packethost/packngo v0.9.0
github.com/paultyng/go-newrelic/v4 v4.10.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.1.1
Expand Down
Loading

0 comments on commit a603fc5

Please sign in to comment.