backend/s3: Document need to reconfigure backend when updating Terraform#34098
backend/s3: Document need to reconfigure backend when updating Terraform#34098
Conversation
… reconfiguring backend
|
@gdavison there's a typo on line 19 of website/docs/language/settings/backends/s3.mdx, and the same on line 142 of website/docs/language/upgrade-guides/index.mdx: "Becuase". |
| Previously, the configuration to assume the IAM role `arn:aws:iam::123456789012:role/example` with a session name `example-session` and a session duration of 15 minutes was: | ||
|
|
||
| ```hcl | ||
| terraform { |
There was a problem hiding this comment.
should this example show backend S3 block?
terraform {
backend "s3" {
assume_role {
role_arn = "arn:aws:iam::123456789012:role/example"
session_name = "example-session"
duration = "15m"
}
}
}Co-authored-by: Jared Baker <jar-b@users.noreply.github.com>
trujillo-adam
left a comment
There was a problem hiding this comment.
Thanks for updating this information. I made some suggestions that are mostly around consistency with our style guide.
|
Thanks to #34108, users do not need to reconfigure the backend. Leaving the deprecation documentation |
|
Reminder for the merging maintainer: if this is a user-visible change, please update the changelog on the appropriate release branch. |
|
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions. |
Because of changes to the S3 Backend schema, some users are reporting that they need to reconfigure their backend when updating to Terraform 1.6, even if they have made no changes. Add this to the Upgrade Guide and S3 Backend documentation.
Relates #34022
Target Release
1.6.2
Draft CHANGELOG entry
Documentation change