Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.10 upgrade guide: sidebar update and -reconfigure callout #36153

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/data/language-nav-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@
]
},
{
"title": "Upgrading to Terraform v1.9",
"title": "Upgrading to Terraform v1.10",
"path": "upgrade-guides"
},
{
Expand Down
3 changes: 3 additions & 0 deletions website/docs/language/upgrade-guides/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ keywords from moved blocks will need to prepend the reference identifier with `r

## S3 Backend

Executing `terraform init -reconfigure` is required after updating to Terraform v1.10. This removes the [deprecated fields](#root-assume-role-attribute-removal) from the internal state file.

### S3 Native State Locking

The S3 backend now supports S3 native state locking as an opt-in, experimental feature.
Expand Down Expand Up @@ -57,6 +59,7 @@ In a future minor version of Terraform the experimental label will be removed fr
Several root level attributes related to IAM role assumption which were previously deprecated have been removed.
Each removed field has an analogous field inside the [`assume_role` block](https://developer.hashicorp.com/terraform/language/backend/s3#assume-role-configuration) which should be used instead.


| Removed | Replacement |
| --- | --- |
| `role_arn` | `assume_role.role_arn` |
Expand Down
Loading