plugin: bump protocol version

This is necessary since the TypeUnknown HIL handling in helper/schema
makes providers compiled WITHOUT TypeUnknown incompatible with the way
core handles unknown values.
This commit is contained in:
Mitchell Hashimoto 2016-11-17 10:03:09 -08:00
parent 81125f6aeb
commit b3124e16ca
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 8 additions and 1 deletions

View File

@ -14,7 +14,14 @@ const (
// Handshake is the HandshakeConfig used to configure clients and servers. // Handshake is the HandshakeConfig used to configure clients and servers.
var Handshake = plugin.HandshakeConfig{ var Handshake = plugin.HandshakeConfig{
ProtocolVersion: 1, // The ProtocolVersion is the version that must match between TF core
// and TF plugins. This should be bumped whenever a change happens in
// one or the other that makes it so that they can't safely communicate.
// This could be adding a new interface value, it could be how
// helper/schema computes diffs, etc.
ProtocolVersion: 2,
// The magic cookie values should NEVER be changed.
MagicCookieKey: "TF_PLUGIN_MAGIC_COOKIE", MagicCookieKey: "TF_PLUGIN_MAGIC_COOKIE",
MagicCookieValue: "d602bf8f470bc67ca7faa0386276bbdd4330efaf76d1a219cb4d6991ca9872b2", MagicCookieValue: "d602bf8f470bc67ca7faa0386276bbdd4330efaf76d1a219cb4d6991ca9872b2",
} }