happyDomain/providers/gcloud.go

62 lines
2.6 KiB
Go

// This file is part of the happyDomain (R) project.
// Copyright (c) 2020-2025 happyDomain
// Authors: David Dernoncourt, et al.
//
// This program is offered under a commercial and under the AGPL license.
// For commercial licensing, contact us at <contact@happydomain.org>.
//
// For AGPL licensing:
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package providers // import "git.happydns.org/happyDomain/providers"
import (
_ "github.com/StackExchange/dnscontrol/v4/providers/gcloud"
"git.happydns.org/happyDomain/internal/adapters"
"git.happydns.org/happyDomain/model"
)
type GCloudAPI struct {
ProjectId string `json:"project_id,omitempty" happydomain:"label=Project ID,placeholder=my-project-id,required,description=Google Cloud project ID"`
PrivateKey string `json:"private_key,omitempty" happydomain:"label=Private Key,placeholder=-----BEGIN PRIVATE KEY-----...,secret,description=Service account private key in PEM format"`
ClientEmail string `json:"client_email,omitempty" happydomain:"label=Client Email,placeholder=service-account@project-id.iam.gserviceaccount.com,description=Service account email address"`
NameServerSet string `json:"name_server_set,omitempty" happydomain:"label=Name Server Set,placeholder=,description=Optional name server set (requires special permission from your TAM at Google)"`
}
func (s *GCloudAPI) DNSControlName() string {
return "GCLOUD"
}
func (s *GCloudAPI) InstantiateProvider() (happydns.ProviderActuator, error) {
return adapter.NewDNSControlProviderAdapter(s)
}
func (s *GCloudAPI) ToDNSControlConfig() (map[string]string, error) {
return map[string]string{
"project_id": s.ProjectId,
"private_key": s.PrivateKey,
"client_email": s.ClientEmail,
"name_server_set": s.NameServerSet,
}, nil
}
func init() {
adapter.RegisterDNSControlProviderAdapter(func() happydns.ProviderBody {
return &GCloudAPI{}
}, happydns.ProviderInfos{
Name: "Google Cloud DNS",
Description: "Google's globally distributed, scalable, and reliable managed DNS service.",
}, RegisterProvider)
}