mirror of
https://github.com/adammck/terraform-inventory
synced 2024-11-23 04:22:08 +01:00
Match host command by Address, not Name
This commit is contained in:
parent
7276f41f50
commit
aa1c5d4b19
2
cli.go
2
cli.go
@ -30,7 +30,7 @@ func cmdList(stdout io.Writer, stderr io.Writer, s *state) int {
|
|||||||
|
|
||||||
func cmdHost(stdout io.Writer, stderr io.Writer, s *state, hostname string) int {
|
func cmdHost(stdout io.Writer, stderr io.Writer, s *state, hostname string) int {
|
||||||
for _, res := range s.resources() {
|
for _, res := range s.resources() {
|
||||||
if hostname == res.Name {
|
if hostname == res.Address() {
|
||||||
return output(stdout, stderr, res.Attributes())
|
return output(stdout, stderr, res.Attributes())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user