-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_public_ip.go
83 lines (64 loc) · 2.1 KB
/
data_source_public_ip.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
package azurerm
import (
"fmt"
"net/http"
"github.com/hashicorp/terraform/helper/schema"
)
func dataSourceArmPublicIP() *schema.Resource {
return &schema.Resource{
Read: dataSourceArmPublicIPRead,
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
},
"resource_group_name": resourceGroupNameForDataSourceSchema(),
"domain_name_label": {
Type: schema.TypeString,
Computed: true,
},
"idle_timeout_in_minutes": {
Type: schema.TypeInt,
Computed: true,
},
"fqdn": {
Type: schema.TypeString,
Computed: true,
},
"ip_address": {
Type: schema.TypeString,
Computed: true,
},
"tags": tagsSchema(),
},
}
}
func dataSourceArmPublicIPRead(d *schema.ResourceData, meta interface{}) error {
publicIPClient := meta.(*ArmClient).publicIPClient
resGroup := d.Get("resource_group_name").(string)
name := d.Get("name").(string)
resp, err := publicIPClient.Get(resGroup, name, "")
if err != nil {
if resp.StatusCode == http.StatusNotFound {
d.SetId("")
}
return fmt.Errorf("Error making Read request on Azure public ip %s: %s", name, err)
}
d.SetId(*resp.ID)
if resp.PublicIPAddressPropertiesFormat.DNSSettings != nil {
if resp.PublicIPAddressPropertiesFormat.DNSSettings.Fqdn != nil && *resp.PublicIPAddressPropertiesFormat.DNSSettings.Fqdn != "" {
d.Set("fqdn", resp.PublicIPAddressPropertiesFormat.DNSSettings.Fqdn)
}
if resp.PublicIPAddressPropertiesFormat.DNSSettings.DomainNameLabel != nil && *resp.PublicIPAddressPropertiesFormat.DNSSettings.DomainNameLabel != "" {
d.Set("domain_name_label", resp.PublicIPAddressPropertiesFormat.DNSSettings.DomainNameLabel)
}
}
if resp.PublicIPAddressPropertiesFormat.IPAddress != nil && *resp.PublicIPAddressPropertiesFormat.IPAddress != "" {
d.Set("ip_address", resp.PublicIPAddressPropertiesFormat.IPAddress)
}
if resp.PublicIPAddressPropertiesFormat.IdleTimeoutInMinutes != nil {
d.Set("idle_timeout_in_minutes", *resp.PublicIPAddressPropertiesFormat.IdleTimeoutInMinutes)
}
flattenAndSetTags(d, resp.Tags)
return nil
}