Skip to content

Commit

Permalink
Merge pull request #3385 from apparentlymart/remote-state-s3-json
Browse files Browse the repository at this point in the history
S3 remote state use application/json Content-Type
  • Loading branch information
apparentlymart committed Oct 9, 2015
2 parents 11a1426 + ccc8f0d commit fbfab83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion state/remote/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit fbfab83

Please sign in to comment.