Skip to content

Commit fcaf173

Browse files
committed
fix mistake made in merge conflict resolution
1 parent 7ce362b commit fcaf173

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/cli/multiregion/dns.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ func (d *DnsCommand) getAlbDnsValuesFromTfc(workspaceName string) (values AlbDns
207207
itemValue, _ := item.Value.(string)
208208
switch item.Name {
209209
case "alb_dns_name":
210-
external = itemValue
210+
values.external = itemValue
211211
case "internal_alb_dns_name":
212-
internal = itemValue
212+
values.internal = itemValue
213213
}
214214
}
215215
return

0 commit comments

Comments
 (0)