forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_public_ips.go
174 lines (143 loc) · 3.97 KB
/
data_source_public_ips.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
168
169
170
171
172
173
174
package azurerm
import (
"fmt"
"log"
"strings"
"time"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/helper/validation"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
func dataSourceArmPublicIPs() *schema.Resource {
return &schema.Resource{
Read: dataSourceArmPublicIPsRead,
Schema: map[string]*schema.Schema{
"resource_group_name": resourceGroupNameForDataSourceSchema(),
"name_prefix": {
Type: schema.TypeString,
Optional: true,
},
"attached": {
Type: schema.TypeBool,
Optional: true,
},
"allocation_type": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{
string(network.Dynamic),
string(network.Static),
}, false),
},
"public_ips": {
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,
},
"fqdn": {
Type: schema.TypeString,
Computed: true,
},
"domain_name_label": {
Type: schema.TypeString,
Computed: true,
},
"ip_address": {
Type: schema.TypeString,
Computed: true,
},
},
},
},
},
}
}
func dataSourceArmPublicIPsRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).publicIPClient
ctx := meta.(*ArmClient).StopContext
resourceGroup := d.Get("resource_group_name").(string)
log.Printf("[DEBUG] Reading Public IP's in Resource Group %q", resourceGroup)
resp, err := client.List(ctx, resourceGroup)
if err != nil {
if utils.ResponseWasNotFound(resp.Response().Response) {
d.SetId("")
return nil
}
return fmt.Errorf("Error listing Public IP Addresses in the Resource Group %q: %v", resourceGroup, err)
}
filteredIPAddresses := make([]network.PublicIPAddress, 0)
for _, element := range resp.Values() {
nicIsAttached := element.IPConfiguration != nil
shouldInclude := true
if v, ok := d.GetOkExists("name_prefix"); ok {
if prefix := v.(string); prefix != "" {
if !strings.HasPrefix(*element.Name, prefix) {
shouldInclude = false
}
}
}
if v, ok := d.GetOkExists("attached"); ok {
attachedOnly := v.(bool)
if attachedOnly != nicIsAttached {
shouldInclude = false
}
}
if v, ok := d.GetOkExists("allocation_type"); ok {
if allocationType := v.(string); allocationType != "" {
allocation := network.IPAllocationMethod(allocationType)
if element.PublicIPAllocationMethod != allocation {
shouldInclude = false
}
}
}
if shouldInclude {
filteredIPAddresses = append(filteredIPAddresses, element)
}
}
d.SetId(time.Now().UTC().String())
results := flattenDataSourcePublicIPs(filteredIPAddresses)
if err := d.Set("public_ips", results); err != nil {
return fmt.Errorf("Error setting `public_ips`: %+v", err)
}
return nil
}
func flattenDataSourcePublicIPs(input []network.PublicIPAddress) []interface{} {
results := make([]interface{}, 0)
for _, element := range input {
flattenedIPAddress := flattenDataSourcePublicIP(element)
results = append(results, flattenedIPAddress)
}
return results
}
func flattenDataSourcePublicIP(input network.PublicIPAddress) map[string]string {
output := make(map[string]string, 0)
if input.ID != nil {
output["id"] = *input.ID
}
if input.Name != nil {
output["name"] = *input.Name
}
if props := input.PublicIPAddressPropertiesFormat; props != nil {
if dns := props.DNSSettings; dns != nil {
if fqdn := dns.Fqdn; fqdn != nil {
output["fqdn"] = *fqdn
}
if label := dns.DomainNameLabel; label != nil {
output["domain_name_label"] = *label
}
}
if ip := props.IPAddress; ip != nil {
output["ip_address"] = *ip
}
}
return output
}