forked from aliyun/terraform-provider-alicloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_alicloud_slb_rules.go
159 lines (140 loc) · 3.98 KB
/
data_source_alicloud_slb_rules.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
package alicloud
import (
"fmt"
"log"
"regexp"
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
"github.com/aliyun/alibaba-cloud-sdk-go/services/slb"
"github.com/hashicorp/terraform/helper/schema"
"github.com/terraform-providers/terraform-provider-alicloud/alicloud/connectivity"
)
func dataSourceAlicloudSlbRules() *schema.Resource {
return &schema.Resource{
Read: dataSourceAlicloudSlbRulesRead,
Schema: map[string]*schema.Schema{
"load_balancer_id": {
Type: schema.TypeString,
Required: true,
},
"frontend_port": {
Type: schema.TypeInt,
Required: true,
},
"ids": {
Type: schema.TypeList,
Optional: true,
Elem: &schema.Schema{Type: schema.TypeString},
ForceNew: true,
MinItems: 1,
},
"name_regex": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validateNameRegex,
ForceNew: true,
},
// Computed values
"slb_rules": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"id": {
Type: schema.TypeString,
Computed: true,
},
"name": {
Type: schema.TypeString,
Computed: true,
},
"domain": {
Type: schema.TypeString,
Computed: true,
},
"url": {
Type: schema.TypeString,
Computed: true,
},
"server_group_id": {
Type: schema.TypeString,
Computed: true,
},
},
},
},
},
}
}
func dataSourceAlicloudSlbRulesRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*connectivity.AliyunClient)
args := slb.CreateDescribeRulesRequest()
args.LoadBalancerId = d.Get("load_balancer_id").(string)
args.ListenerPort = requests.NewInteger(d.Get("frontend_port").(int))
idsMap := make(map[string]string)
if v, ok := d.GetOk("ids"); ok {
for _, vv := range v.([]interface{}) {
idsMap[Trim(vv.(string))] = Trim(vv.(string))
}
}
raw, err := client.WithSlbClient(func(slbClient *slb.Client) (interface{}, error) {
return slbClient.DescribeRules(args)
})
if err != nil {
return fmt.Errorf("DescribeRules got an error: %#v", err)
}
resp, _ := raw.(*slb.DescribeRulesResponse)
if resp == nil {
return fmt.Errorf("there is no SLB with the ID %s. Please change your search criteria and try again", args.LoadBalancerId)
}
var filteredRulesTemp []slb.Rule
nameRegex, ok := d.GetOk("name_regex")
if (ok && nameRegex.(string) != "") || (len(idsMap) > 0) {
var r *regexp.Regexp
if nameRegex != "" {
r = regexp.MustCompile(nameRegex.(string))
}
for _, rule := range resp.Rules.Rule {
if r != nil && !r.MatchString(rule.RuleName) {
continue
}
if len(idsMap) > 0 {
if _, ok := idsMap[rule.RuleId]; !ok {
continue
}
}
filteredRulesTemp = append(filteredRulesTemp, rule)
}
} else {
filteredRulesTemp = resp.Rules.Rule
}
if len(filteredRulesTemp) < 1 {
return fmt.Errorf("Your query returned no results. Please change your search criteria and try again.")
}
log.Printf("[DEBUG] alicloud_slb_rules - Slb rules found: %#v", filteredRulesTemp)
return slbRulesDescriptionAttributes(d, filteredRulesTemp)
}
func slbRulesDescriptionAttributes(d *schema.ResourceData, rules []slb.Rule) error {
var ids []string
var s []map[string]interface{}
for _, rule := range rules {
mapping := map[string]interface{}{
"id": rule.RuleId,
"name": rule.RuleName,
"domain": rule.Domain,
"url": rule.Url,
"server_group_id": rule.VServerGroupId,
}
log.Printf("[DEBUG] alicloud_slb_rules - adding slb_rule mapping: %v", mapping)
ids = append(ids, rule.RuleId)
s = append(s, mapping)
}
d.SetId(dataResourceIdHash(ids))
if err := d.Set("slb_rules", s); err != nil {
return err
}
// create a json file in current directory and write data source to it.
if output, ok := d.GetOk("output_file"); ok && output.(string) != "" {
writeToFile(output.(string), s)
}
return nil
}