Skip to content

Commit 9397ea5

Browse files
authored
Merge pull request #54 from paynejacob/fix/bastion
2 parents c7c1902 + 3ff527d commit 9397ea5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pkg/corral/node.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package corral
22

33
type Node struct {
4-
Name string `yaml:"name,omitempty"`
5-
User string `yaml:"user,omitempty"`
6-
Address string `yaml:"address,omitempty"`
7-
BastionAddress string `yaml:"bastion_address,omitempty"`
8-
OverlayRoot string `yaml:"overlay_root"`
4+
Name string `json:"name,omitempty" yaml:"name,omitempty"`
5+
User string `json:"user,omitempty" yaml:"user,omitempty"`
6+
Address string `json:"address,omitempty" yaml:"address,omitempty"`
7+
BastionAddress string `json:"bastion_address,omitempty" yaml:"bastion_address,omitempty"`
8+
OverlayRoot string `json:"overlay_root" yaml:"overlay_root"`
99
}

0 commit comments

Comments
 (0)