From 576b2d11093f0b750cd0402ebb1a55eaf30a3b9e Mon Sep 17 00:00:00 2001 From: Kazunori Kojima Date: Wed, 7 Oct 2015 23:09:03 +0900 Subject: [PATCH] Change KMS Key ID configuration name to used in other --- state/remote/s3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state/remote/s3.go b/state/remote/s3.go index dcf9a3b80..f9d95c718 100644 --- a/state/remote/s3.go +++ b/state/remote/s3.go @@ -50,7 +50,7 @@ func s3Factory(conf map[string]string) (Client, error) { if raw, ok := conf["acl"]; ok { acl = raw } - kmsKeyID := conf["kmsKeyID"] + kmsKeyID := conf["kms_key_id"] accessKeyId := conf["access_key"] secretAccessKey := conf["secret_key"]