File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,10 @@ import (
12
12
)
13
13
14
14
type output struct {
15
- ID string `graphql:"id" json:"id,omitempty"`
16
- Sensitive bool `graphql:"sensitive" json:"sensitive,omitempty"`
17
- Value string `graphql:"value" json:"value,omitempty"`
15
+ ID string `graphql:"id" json:"id,omitempty"`
16
+ Sensitive bool `graphql:"sensitive" json:"sensitive,omitempty"`
17
+ Description string `graphql:"description" json:"description,omitempty"`
18
+ Value string `graphql:"value" json:"value,omitempty"`
18
19
}
19
20
20
21
type showOutputsQuery struct {
@@ -74,12 +75,13 @@ func (c *showOutputsStackCommand) showOutputs(cliCtx *cli.Context) error {
74
75
}
75
76
76
77
func (c * showOutputsStackCommand ) showOutputsTable (outputs []output ) error {
77
- tableData := [][]string {{"Name" , "Sensitive" , "Value" }}
78
+ tableData := [][]string {{"Name" , "Sensitive" , "Value" , "Description" }}
78
79
for _ , output := range outputs {
79
80
tableData = append (tableData , []string {
80
81
output .ID ,
81
82
strconv .FormatBool (output .Sensitive ),
82
83
output .Value ,
84
+ output .Description ,
83
85
})
84
86
85
87
}
You can’t perform that action at this time.
0 commit comments