terraform/builtin/providers/tls
James Nugent 6aac79e194 state: Add support for outputs of multiple types
This commit adds the groundwork for supporting module outputs of types
other than string. In order to do so, the state version is increased
from 1 to 2 (though the "public-facing" state version is actually as the
first state file was binary).

Tests are added to ensure that V2 (1) state is upgraded to V3 (2) state,
though no separate read path is required since the V2 JSON will
unmarshal correctly into the V3 structure.

Outputs in a ModuleState are now of type map[string]interface{}, and a
test covers round-tripping string, []string and map[string]string, which
should cover all of the types in question.

Type switches have been added where necessary to deal with the
interface{} value, but they currently default to panicking when the input
is not a string.
2016-05-10 14:40:12 -04:00
..
provider.go provider/tls: add locally signed certificates 2015-11-15 20:23:40 -05:00
provider_test.go provider/tls: add locally signed certificates 2015-11-15 20:23:40 -05:00
resource_cert_request.go Enable `go vet -unusedresult` check and fix warnings. 2016-02-17 11:59:50 -08:00
resource_cert_request_test.go state: Add support for outputs of multiple types 2016-05-10 14:40:12 -04:00
resource_certificate.go Enable `go vet -unusedresult` check and fix warnings. 2016-02-17 11:59:50 -08:00
resource_locally_signed_cert.go provider/tls: add locally signed certificates 2015-11-15 20:23:40 -05:00
resource_locally_signed_cert_test.go state: Add support for outputs of multiple types 2016-05-10 14:40:12 -04:00
resource_private_key.go Export public keys from tls_private_key 2016-01-16 17:30:48 -08:00
resource_private_key_test.go state: Add support for outputs of multiple types 2016-05-10 14:40:12 -04:00
resource_self_signed_cert.go provider/tls: add locally signed certificates 2015-11-15 20:23:40 -05:00
resource_self_signed_cert_test.go state: Add support for outputs of multiple types 2016-05-10 14:40:12 -04:00
util.go provider/tls: add locally signed certificates 2015-11-15 20:23:40 -05:00