Skip to content

Commit 15286f5

Browse files
committed
add
1 parent 3855cb1 commit 15286f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tencentcloud/services/privatedns/resource_tc_private_dns_inbound_endpoint.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,11 @@ func resourceTencentCloudPrivateDnsInboundEndpointRead(d *schema.ResourceData, m
160160
}
161161

162162
if respData.EndPointName != nil {
163-
d.Set("endpoint_name", respData.EndPointName)
163+
_ = d.Set("endpoint_name", respData.EndPointName)
164164
}
165165

166166
if respData.UniqVpcId != nil {
167-
d.Set("endpoint_vpc", respData.UniqVpcId)
167+
_ = d.Set("endpoint_vpc", respData.UniqVpcId)
168168
}
169169

170170
if respData.EndPointService != nil {
@@ -182,7 +182,7 @@ func resourceTencentCloudPrivateDnsInboundEndpointRead(d *schema.ResourceData, m
182182
tmpList = append(tmpList, dMap)
183183
}
184184

185-
d.Set("subnet_ip", tmpList)
185+
_ = d.Set("subnet_ip", tmpList)
186186
}
187187

188188
return nil

0 commit comments

Comments
 (0)