Terraform v0.9.1
{
"terraform": {
"backend": {
"s3": {
"bucket": "jerome-dev",
"key": "terraform-backend/1/1/tfstate",
"region": "us-west-2",
"lock_table": "DynamoDBTABLE"
}
}
}
}
s3 as backend should work
Please list the steps required to reproduce the issue, for example:
terraform initterraform applyIt works if you wrap the value of "terraform" and "backend" in array brackets [.
This is still a bug, but just noting you can get it to work now.
{
"terraform": [{
"backend": [{
"s3": {
"bucket": "jerome-dev",
"key": "terraform-backend/1/1/tfstate",
"region": "us-west-2",
"lock_table": "DynamoDBTABLE"
}
}]
}]
}
I'm going to lock this issue because it has been closed for _30 days_ โณ. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Most helpful comment
It works if you wrap the value of "terraform" and "backend" in array brackets
[.This is still a bug, but just noting you can get it to work now.