From 38784cd38f9b1cf8eeaa8927c636de1b73b9a18e Mon Sep 17 00:00:00 2001 From: Trevor Pounds Date: Tue, 6 Sep 2016 16:18:33 -0400 Subject: [PATCH] Cleanup inaccurate state structure comments. --- terraform/state.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/state.go b/terraform/state.go index 5bef38f66..7a23d4c26 100644 --- a/terraform/state.go +++ b/terraform/state.go @@ -53,9 +53,9 @@ func normalizeModulePath(p []string) []string { // State keeps track of a snapshot state-of-the-world that Terraform // can use to keep track of what real world resources it is actually -// managing. This is the latest format as of Terraform 0.3 +// managing. type State struct { - // Version is the protocol version. Currently only "1". + // Version is the state file protocol version. Version int `json:"version"` // TFVersion is the version of Terraform that wrote this state.