forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_route_table.go
137 lines (107 loc) · 3.16 KB
/
data_source_route_table.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
package azurerm
import (
"fmt"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2018-04-01/network"
"github.com/hashicorp/terraform/helper/schema"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
func dataSourceArmRouteTable() *schema.Resource {
return &schema.Resource{
Read: dataSourceArmRouteTableRead,
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
},
"resource_group_name": resourceGroupNameForDataSourceSchema(),
"location": locationForDataSourceSchema(),
"route": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Computed: true,
},
"address_prefix": {
Type: schema.TypeString,
Computed: true,
},
"next_hop_type": {
Type: schema.TypeString,
Computed: true,
},
"next_hop_in_ip_address": {
Type: schema.TypeString,
Computed: true,
},
},
},
},
"subnets": {
Type: schema.TypeSet,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
Set: schema.HashString,
},
"tags": tagsForDataSourceSchema(),
},
}
}
func dataSourceArmRouteTableRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).routeTablesClient
ctx := meta.(*ArmClient).StopContext
name := d.Get("name").(string)
resourceGroup := d.Get("resource_group_name").(string)
resp, err := client.Get(ctx, resourceGroup, name, "")
if err != nil {
if utils.ResponseWasNotFound(resp.Response) {
return fmt.Errorf("Error: Route Table %q (Resource Group %q) was not found", name, resourceGroup)
}
return fmt.Errorf("Error making Read request on Azure Route Table %q: %+v", name, err)
}
d.SetId(*resp.ID)
d.Set("name", name)
d.Set("resource_group_name", resourceGroup)
if location := resp.Location; location != nil {
d.Set("location", azureRMNormalizeLocation(*location))
}
if props := resp.RouteTablePropertiesFormat; props != nil {
if err := d.Set("route", flattenRouteTableDataSourceRoutes(props.Routes)); err != nil {
return err
}
if err := d.Set("subnets", flattenRouteTableDataSourceSubnets(props.Subnets)); err != nil {
return err
}
}
flattenAndSetTags(d, resp.Tags)
return nil
}
func flattenRouteTableDataSourceRoutes(input *[]network.Route) []interface{} {
results := make([]interface{}, 0)
if routes := input; routes != nil {
for _, route := range *routes {
r := make(map[string]interface{})
r["name"] = *route.Name
if props := route.RoutePropertiesFormat; props != nil {
r["address_prefix"] = *props.AddressPrefix
r["next_hop_type"] = string(props.NextHopType)
if ip := props.NextHopIPAddress; ip != nil {
r["next_hop_in_ip_address"] = *ip
}
}
results = append(results, r)
}
}
return results
}
func flattenRouteTableDataSourceSubnets(input *[]network.Subnet) []string {
output := make([]string, 0)
if subnets := input; subnets != nil {
for _, subnet := range *subnets {
output = append(output, *subnet.ID)
}
}
return output
}