providers/opal/opal_provider.go (98 lines of code) (raw):
// Copyright 2022 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 opal
import (
"errors"
"os"
"github.com/GoogleCloudPlatform/terraformer/terraformutils"
"github.com/zclconf/go-cty/cty"
)
const opalDefaultURL = "https://api.opal.dev"
type OpalProvider struct { //nolint
terraformutils.Provider
token string
baseURL string
}
func (p OpalProvider) GetProviderData(arg ...string) map[string]interface{} {
return map[string]interface{}{
"provider": map[string]interface{}{
"opal": map[string]interface{}{
"base_url": p.baseURL,
},
},
}
}
func (p *OpalProvider) GetName() string {
return "opal"
}
func (p *OpalProvider) GetSource() string {
return "opalsecurity/opal"
}
func (p OpalProvider) GetResourceConnections() map[string]map[string][]string {
return map[string]map[string][]string{
"resource": {
"owner": {
"admin_owner_id", "id",
"reviewer_stage.reviewer.id", "id",
},
"group": {"visibility_group.id", "id"},
},
"group": {
"owner": {
"admin_owner_id", "id",
"reviewer_stage.reviewer.id", "id",
},
"group": {"visibility_group.id", "id"},
"message_channel": {
"audit_message_channel.id", "id",
},
"on_call_schedule": {
"on_call_schedule.id", "id",
},
},
"owner": {
"message_channel": {
"reviewer_message_channel_id", "id",
},
},
}
}
func (p *OpalProvider) Init(args []string) error {
p.token = os.Getenv("OPAL_AUTH_TOKEN")
if p.token == "" {
return errors.New("the Opal API key must be set via `OPAL_AUTH_TOKEN` env var")
}
p.baseURL = os.Getenv("OPAL_BASE_URL")
if p.baseURL == "" {
p.baseURL = opalDefaultURL
}
return nil
}
func (p *OpalProvider) GetConfig() cty.Value {
return cty.ObjectVal(map[string]cty.Value{
"token": cty.StringVal(p.token),
"base_url": cty.StringVal(p.baseURL),
})
}
func (p *OpalProvider) InitService(serviceName string, verbose bool) error {
var isSupported bool
if _, isSupported = p.GetSupportedService()[serviceName]; !isSupported {
return errors.New("opal: " + serviceName + " is not a supported resource type")
}
p.Service = p.GetSupportedService()[serviceName]
p.Service.SetName(serviceName)
p.Service.SetVerbose(verbose)
p.Service.SetProviderName(p.GetName())
p.Service.SetArgs(map[string]interface{}{
"token": p.token,
"base_url": p.baseURL,
})
return nil
}
func (p *OpalProvider) GetSupportedService() map[string]terraformutils.ServiceGenerator {
return map[string]terraformutils.ServiceGenerator{
"owner": &OwnerGenerator{},
"resource": &ResourceGenerator{},
"group": &GroupGenerator{},
"message_channel": &MessageChannelGenerator{},
"on_call_schedule": &OnCallScheduleGenerator{},
}
}