-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_source_openstack_identity_endpoint_v3.go
167 lines (137 loc) · 4.55 KB
/
data_source_openstack_identity_endpoint_v3.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package openstack
import (
"context"
"log"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/gophercloud/gophercloud/openstack/identity/v3/endpoints"
"github.com/gophercloud/gophercloud/openstack/identity/v3/services"
)
func dataSourceIdentityEndpointV3() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceIdentityEndpointV3Read,
Schema: map[string]*schema.Schema{
"region": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
},
"name": {
Type: schema.TypeString,
Optional: true,
},
"endpoint_region": {
Type: schema.TypeString,
Optional: true,
},
"service_name": {
Type: schema.TypeString,
Optional: true,
},
"service_id": {
Type: schema.TypeString,
Optional: true,
},
"interface": {
Type: schema.TypeString,
Optional: true,
Default: "public",
ValidateFunc: validation.StringInSlice([]string{
"public", "internal", "admin",
}, false),
},
"service_type": {
Type: schema.TypeString,
Optional: true,
},
"url": {
Type: schema.TypeString,
Computed: true,
},
},
}
}
// dataSourceIdentityEndpointV3Read performs the endpoint lookup.
func dataSourceIdentityEndpointV3Read(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
config := meta.(*Config)
identityClient, err := config.IdentityV3Client(GetRegion(d, config))
if err != nil {
return diag.Errorf("Error creating OpenStack identity client: %s", err)
}
listOpts := endpoints.ListOpts{
Availability: identityEndpointAvailability(d.Get("interface").(string)),
ServiceID: d.Get("service_id").(string),
RegionID: d.Get("endpoint_region").(string),
}
log.Printf("[DEBUG] openstack_identity_endpoint_v3 list options: %#v", listOpts)
var endpoint endpoints.Endpoint
allPages, err := endpoints.List(identityClient, listOpts).AllPages()
if err != nil {
return diag.Errorf("Unable to query openstack_identity_endpoint_v3: %s", err)
}
allEndpoints, err := endpoints.ExtractEndpoints(allPages)
if err != nil {
return diag.Errorf("Unable to retrieve openstack_identity_endpoint_v3: %s", err)
}
// filter by name, when the name is specified
if v, ok := d.GetOkExists("name"); ok {
var filteredEndpoints []endpoints.Endpoint
for _, endpoint := range allEndpoints {
if endpoint.Name == v.(string) {
filteredEndpoints = append(filteredEndpoints, endpoint)
}
}
allEndpoints = filteredEndpoints
}
if len(allEndpoints) < 1 {
return diag.Errorf("Your openstack_identity_endpoint_v3 query returned no results. " +
"Please change your search criteria and try again.")
}
// Query services
serviceType := d.Get("service_type").(string)
serviceName := d.Get("service_name").(string)
var filteredEndpoints []endpoints.Endpoint
allServicePages, err := services.List(identityClient, services.ListOpts{ServiceType: serviceType, Name: serviceName}).AllPages()
if err != nil {
return diag.Errorf("Unable to query openstack_identity_endpoint_v3 services: %s", err)
}
allServices, err := services.ExtractServices(allServicePages)
if err != nil {
return diag.Errorf("Unable to retrieve openstack_identity_endpoint_v3 services: %s", err)
}
for _, endpoint := range allEndpoints {
for _, service := range allServices {
if endpoint.ServiceID == service.ID {
// it is safe to assign these vars here, since if there are more than
// one endpoint, an error will be returned
if v, ok := service.Extra["name"].(string); ok {
serviceName = v
}
serviceType = service.Type
filteredEndpoints = append(filteredEndpoints, endpoint)
}
}
}
allEndpoints = filteredEndpoints
if len(allEndpoints) < 1 {
return diag.Errorf("Your openstack_identity_endpoint_v3 query returned no results. " +
"Please change your search criteria and try again.")
}
if len(allEndpoints) > 1 {
return diag.Errorf("Your openstack_identity_endpoint_v3 query returned more than one result")
}
endpoint = allEndpoints[0]
log.Printf("[DEBUG] openstack_identity_endpoint_v3 details: %#v", endpoint)
d.SetId(endpoint.ID)
d.Set("name", endpoint.Name)
d.Set("interface", string(endpoint.Availability))
d.Set("endpoint_region", endpoint.Region)
d.Set("service_id", endpoint.ServiceID)
d.Set("service_name", serviceName)
d.Set("service_type", serviceType)
d.Set("url", endpoint.URL)
d.Set("region", GetRegion(d, config))
return nil
}