-
Notifications
You must be signed in to change notification settings - Fork 670
/
data_source_ibm_is_instance_group.go
150 lines (128 loc) · 3.96 KB
/
data_source_ibm_is_instance_group.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
// Copyright IBM Corp. 2017, 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package vpc
import (
"fmt"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/flex"
"github.com/IBM/vpc-go-sdk/vpcv1"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
func DataSourceIBMISInstanceGroup() *schema.Resource {
return &schema.Resource{
Read: dataSourceIBMISInstanceGroupRead,
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
Description: "The user-defined name for this instance group",
},
"instance_template": {
Type: schema.TypeString,
Computed: true,
Description: "instance template ID",
},
"membership_count": {
Type: schema.TypeInt,
Computed: true,
Description: "The number of instances in the instance group",
},
"resource_group": {
Type: schema.TypeString,
Computed: true,
Description: "Resource group ID",
},
"crn": {
Type: schema.TypeString,
Computed: true,
Description: "The CRN for this instance group",
},
"subnets": {
Type: schema.TypeList,
Elem: &schema.Schema{Type: schema.TypeString},
Computed: true,
Description: "list of subnet IDs",
},
"application_port": {
Type: schema.TypeInt,
Computed: true,
Description: "Used by the instance group when scaling up instances to supply the port for the load balancer pool member.",
},
"load_balancer_pool": {
Type: schema.TypeString,
Computed: true,
Description: "load balancer pool ID",
},
"managers": {
Type: schema.TypeList,
Elem: &schema.Schema{Type: schema.TypeString},
Computed: true,
Description: "list of Managers associated with instancegroup",
},
"vpc": {
Type: schema.TypeString,
Computed: true,
Description: "vpc instance",
},
"status": {
Type: schema.TypeString,
Computed: true,
Description: "Instance group status - deleting, healthy, scaling, unhealthy",
},
},
}
}
func dataSourceIBMISInstanceGroupRead(d *schema.ResourceData, meta interface{}) error {
sess, err := vpcClient(meta)
if err != nil {
return err
}
name := d.Get("name")
// Support for pagination
start := ""
allrecs := []vpcv1.InstanceGroup{}
for {
listInstanceGroupOptions := vpcv1.ListInstanceGroupsOptions{}
if start != "" {
listInstanceGroupOptions.Start = &start
}
instanceGroupsCollection, response, err := sess.ListInstanceGroups(&listInstanceGroupOptions)
if err != nil {
return fmt.Errorf("[ERROR] Error Fetching InstanceGroups %s\n%s", err, response)
}
start = flex.GetNext(instanceGroupsCollection.Next)
allrecs = append(allrecs, instanceGroupsCollection.InstanceGroups...)
if start == "" {
break
}
}
for _, instanceGroup := range allrecs {
if *instanceGroup.Name == name {
d.Set("name", *instanceGroup.Name)
d.Set("instance_template", *instanceGroup.InstanceTemplate.ID)
d.Set("membership_count", *instanceGroup.MembershipCount)
d.Set("resource_group", *instanceGroup.ResourceGroup.ID)
d.Set("crn", *instanceGroup.CRN)
d.SetId(*instanceGroup.ID)
if instanceGroup.ApplicationPort != nil {
d.Set("application_port", *instanceGroup.ApplicationPort)
}
subnets := make([]string, 0)
for i := 0; i < len(instanceGroup.Subnets); i++ {
subnets = append(subnets, string(*(instanceGroup.Subnets[i].ID)))
}
if instanceGroup.LoadBalancerPool != nil {
d.Set("load_balancer_pool", *instanceGroup.LoadBalancerPool.ID)
}
d.Set("subnets", subnets)
managers := make([]string, 0)
for i := 0; i < len(instanceGroup.Managers); i++ {
managers = append(managers, string(*(instanceGroup.Managers[i].ID)))
}
d.Set("managers", managers)
d.Set("vpc", *instanceGroup.VPC.ID)
d.Set("status", *instanceGroup.Status)
return nil
}
}
return fmt.Errorf("Instance group %s not found", name)
}