-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprovider.go
102 lines (81 loc) · 3.21 KB
/
provider.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package azure
import (
"context"
"github.com/libdns/libdns"
)
// Provider implements the libdns interfaces for Azure DNS
type Provider struct {
// Subscription ID is the ID of the subscription in which the DNS zone is located. Required.
SubscriptionId string `json:"subscription_id,omitempty"`
// Resource Group Name is the name of the resource group in which the DNS zone is located. Required.
ResourceGroupName string `json:"resource_group_name,omitempty"`
// (Optional)
// Tenant ID is the ID of the tenant of the Microsoft Entra ID in which the application is located.
// Required only when authenticating using a service principal with a secret.
// Do not set any value to authenticate using a managed identity.
TenantId string `json:"tenant_id,omitempty"`
// (Optional)
// Client ID is the ID of the application.
// Required only when authenticating using a service principal with a secret.
// Do not set any value to authenticate using a managed identity.
ClientId string `json:"client_id,omitempty"`
// (Optional)
// Client Secret is the client secret of the application.
// Required only when authenticating using a service principal with a secret.
// Do not set any value to authenticate using a managed identity.
ClientSecret string `json:"client_secret,omitempty"`
client Client
}
// GetRecords lists all the records in the zone.
func (p *Provider) GetRecords(ctx context.Context, zone string) ([]libdns.Record, error) {
records, err := p.getRecords(ctx, zone)
if err != nil {
return nil, err
}
return records, nil
}
// AppendRecords adds records to the zone. It returns the records that were added.
func (p *Provider) AppendRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
var createdRecords []libdns.Record
for _, record := range records {
createdRecord, err := p.createRecord(ctx, zone, record)
if err != nil {
return nil, err
}
createdRecords = append(createdRecords, createdRecord)
}
return createdRecords, nil
}
// SetRecords sets the records in the zone, either by updating existing records
// or creating new ones. It returns the updated records.
func (p *Provider) SetRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
var updatedRecords []libdns.Record
for _, record := range records {
updatedRecord, err := p.updateRecord(ctx, zone, record)
if err != nil {
return nil, err
}
updatedRecords = append(updatedRecords, updatedRecord)
}
return updatedRecords, nil
}
// DeleteRecords deletes the records from the zone. If a record does not have an ID,
// it will be looked up. It returns the records that were deleted.
func (p *Provider) DeleteRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
var deletedRecords []libdns.Record
for _, record := range records {
deletedRecord, err := p.deleteRecord(ctx, zone, record)
if err != nil {
return nil, err
}
deletedRecords = append(deletedRecords, deletedRecord)
}
return deletedRecords, nil
}
// Interface guards
var (
_ libdns.RecordGetter = (*Provider)(nil)
_ libdns.RecordAppender = (*Provider)(nil)
_ libdns.RecordSetter = (*Provider)(nil)
_ libdns.RecordDeleter = (*Provider)(nil)
)