File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,16 @@ sign out of the proxy.
171
171
$ go get github.com/camptocamp/terraboard
172
172
```
173
173
174
+ ## Compatibility Matrix
175
+
176
+ | Terraboard| Max Terraform version|
177
+ | ----------| ---------------------|
178
+ | 0.15.0 | 0.12.7 |
179
+ | 0.16.0 | 0.12.7 |
180
+ | 0.17.0 | 0.12.18 |
181
+ | 0.18.0 | 0.12.18 |
182
+
183
+
174
184
## Development
175
185
176
186
### Architecture
Original file line number Diff line number Diff line change 6
6
"io/ioutil"
7
7
"os"
8
8
9
+ tfversion "github.com/hashicorp/terraform/version"
9
10
"github.com/jessevdk/go-flags"
10
11
log "github.com/sirupsen/logrus"
11
12
"gopkg.in/yaml.v2"
@@ -107,7 +108,7 @@ func LoadConfig(version string) *Config {
107
108
}
108
109
109
110
if c .Version {
110
- fmt .Printf ("Terraboard v%v\n " , version )
111
+ fmt .Printf ("Terraboard v%v (built for Terraform v%v) \n " , version , tfversion . Version )
111
112
os .Exit (0 )
112
113
}
113
114
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import (
14
14
"github.com/camptocamp/terraboard/db"
15
15
"github.com/camptocamp/terraboard/state"
16
16
"github.com/camptocamp/terraboard/util"
17
+ tfversion "github.com/hashicorp/terraform/version"
17
18
log "github.com/sirupsen/logrus"
18
19
)
19
20
@@ -139,7 +140,7 @@ func main() {
139
140
140
141
util .SetBasePath (c .Web .BaseURL )
141
142
142
- log .Infof ("Terraboard v%s is starting..." , version )
143
+ log .Infof ("Terraboard v%s (built for Terraform v%s) is starting..." , version , tfversion . Version )
143
144
144
145
err := c .SetupLogging ()
145
146
if err != nil {
You can’t perform that action at this time.
0 commit comments