Skip to content

Commit

Permalink
RadiaLint
Browse files Browse the repository at this point in the history
  • Loading branch information
YakDriver committed Feb 4, 2022
1 parent 2c6f813 commit f1cdf57
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions website/docs/guides/version-4-upgrade.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,24 +356,7 @@ resource "aws_instance" "example" {

Previously, `ip_address` could be set to `""`. However, the value `""` is no longer valid. Now, set the argument to `null` (_e.g._, `ip_address = null`) or remove the empty-string configuration.

For example, this type of configuration is now not valid:

```terraform
resource "aws_efs_mount_target" "example" {
file_system_id = aws_efs_file_system.example.id
ip_address = ""
subnet_id = aws_subnet.example.id
}
```

In this updated and valid configuration, we remove the empty-string configuration:

```terraform
resource "aws_efs_mount_target" "example" {
file_system_id = aws_efs_file_system.example.id
subnet_id = aws_subnet.example.id
}
```
For example, this type of configuration is now not valid: `ip_address = ""`.

### Resource: aws_elasticsearch_domain

Expand Down

0 comments on commit f1cdf57

Please sign in to comment.