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

default tags: add changelog and upgrade guide entry #31343

Merged
merged 3 commits into from
May 11, 2023
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
11 changes: 11 additions & 0 deletions .changelog/30793.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
```release-note:enhancement
provider: Duplicate `default_tags` can now be included and will be overwritten by resource `tags`
```

```release-note:enhancement
provider: Allow `default_tags` and resource `tags` to include zero values `""`
```

```release-note:enhancement
provider: Allow `computed` `tags` on resources
```
9 changes: 9 additions & 0 deletions website/docs/guides/version-5-upgrade.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Upgrade topics:

- [Provider Version Configuration](#provider-version-configuration)
- [Provider Arguments](#provider-arguments)
- [Default Tags](#default-tags)
- [Data Source: aws_api_gateway_rest_api](#data-source-aws_api_gateway_rest_api)
- [Data Source: aws_identitystore_group](#data-source-aws_identitystore_group)
- [Data Source: aws_identitystore_user](#data-source-aws_identitystore_user)
Expand Down Expand Up @@ -162,6 +163,14 @@ The [`aws_redshift_service_account`](/docs/providers/aws/d/redshift_service_acco

The `aws_subnet_ids` data source has been removed. Use the [`aws_subnets`](/docs/providers/aws/d/subnets.html) data source instead.

## Default Tags

The following enhancements are included:

* Duplicate `default_tags` can now be included and will be overwritten by resource `tags`.
* Zero value tags, `""`, can now be included in both `default_tags` and resource `tags`.
* Tags can now be `computed`.

## EC2-Classic Retirement

Following the retirement of EC2-Classic a number of resources and attributes have been removed.
Expand Down