forked from ovh/terraform-provider-ovh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_cloud_project_database_kafka_acl.go
82 lines (73 loc) · 2.09 KB
/
data_cloud_project_database_kafka_acl.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
package ovh
import (
"context"
"fmt"
"log"
"net/url"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
)
func dataSourceCloudProjectDatabaseKafkaACL() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceCloudProjectDatabaseKafkaACLRead,
Schema: map[string]*schema.Schema{
"service_name": {
Type: schema.TypeString,
Required: true,
DefaultFunc: schema.EnvDefaultFunc("OVH_CLOUD_PROJECT_SERVICE", nil),
},
"cluster_id": {
Type: schema.TypeString,
Description: "Id of the database cluster",
Required: true,
},
"id": {
Type: schema.TypeString,
Description: "Acl ID",
Required: true,
},
// Computed
"permission": {
Type: schema.TypeString,
Description: "Permission to give to this username on this topic",
Computed: true,
},
"topic": {
Type: schema.TypeString,
Description: "Topic affected by this acl",
Computed: true,
},
"username": {
Type: schema.TypeString,
Description: "Username affected by this acl",
Computed: true,
},
},
}
}
func dataSourceCloudProjectDatabaseKafkaACLRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
config := meta.(*Config)
serviceName := d.Get("service_name").(string)
clusterID := d.Get("cluster_id").(string)
id := d.Get("id").(string)
endpoint := fmt.Sprintf("/cloud/project/%s/database/kafka/%s/acl/%s",
url.PathEscape(serviceName),
url.PathEscape(clusterID),
url.PathEscape(id),
)
res := &CloudProjectDatabaseKafkaAclResponse{}
log.Printf("[DEBUG] Will read acl %s from cluster %s from project %s", id, clusterID, serviceName)
if err := config.OVHClient.GetWithContext(ctx, endpoint, res); err != nil {
return diag.FromErr(helpers.CheckDeleted(d, err, endpoint))
}
for k, v := range res.ToMap() {
if k != "id" {
d.Set(k, v)
} else {
d.SetId(fmt.Sprint(v))
}
}
log.Printf("[DEBUG] Read acl %+v", res)
return nil
}