Skip to content

Commit

Permalink
fix: termination_protection diff true -> null
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov committed Feb 16, 2024
1 parent 094e90e commit c22ba32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ nav_order: 1
- Fix `aiven_kafka_schema` JSON object diff suppress function
- Add new user config generator
- Use `TypeSet` for `ip_filter`, `ip_filter_string` fields

- Output explicitly `termination_protection = true -> false` when service property is removed

## [4.13.3] - 2024-01-29

Expand Down
1 change: 1 addition & 0 deletions internal/schemautil/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ func ServiceCommonSchema() map[string]*schema.Schema {
"termination_protection": {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.",
},
"disk_space": {
Expand Down

0 comments on commit c22ba32

Please sign in to comment.