providers/newrelic/alertpolicy.go (35 lines of code) (raw):
// Copyright 2019 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 newrelic
import (
"fmt"
"github.com/GoogleCloudPlatform/terraformer/terraformutils"
newrelic "github.com/newrelic/newrelic-client-go/newrelic"
)
type AlertPolicyGenerator struct {
NewRelicService
}
func (g *AlertPolicyGenerator) createAlertPolicyResources(client *newrelic.NewRelic) error {
alertPolicies, err := client.Alerts.ListPolicies(nil)
if err != nil {
return err
}
for _, alertPolicy := range alertPolicies {
g.Resources = append(g.Resources, terraformutils.NewSimpleResource(
fmt.Sprintf("%d", alertPolicy.ID),
fmt.Sprintf("%s-%d", normalizeResourceName(alertPolicy.Name), alertPolicy.ID),
"newrelic_alert_policy",
g.ProviderName,
[]string{}))
}
return nil
}
func (g *AlertPolicyGenerator) InitResources() error {
client, err := g.Client()
if err != nil {
return err
}
err = g.createAlertPolicyResources(client)
if err != nil {
return err
}
return nil
}