Merge pull request #3385 from apparentlymart/remote-state-s3-json

S3 remote state use application/json Content-Type
This commit is contained in:
Martin Atkins 2015-10-09 00:11:04 -07:00
commit fbfab83cbe
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ func (c *S3Client) Get() (*Payload, error) {
}
func (c *S3Client) Put(data []byte) error {
contentType := "application/octet-stream"
contentType := "application/json"
contentLength := int64(len(data))
i := &s3.PutObjectInput{