Skip to content

Commit

Permalink
chore: merge branch 'origin/main' into fix/server-nic-index
Browse files Browse the repository at this point in the history
  • Loading branch information
kangasta committed Nov 13, 2024
2 parents cb60200 + 4c097cf commit d2da8ec
Show file tree
Hide file tree
Showing 5 changed files with 148 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/)

- upcloud_server: When modifying `network_interfaces`, match configured network interfaces to the server's actual network interfaces by `index` and `ip_address` (in addition to list order). This is to avoid public and utility network interfaces being re-assigned when the interfaces are re-ordered or when interface is removed from middle of the list. This might result to inaccurate diffs in the Terraform plan when interfaces are re-ordered or when interface is removed from middle of the list. We recommend explicitly setting the value for `index` in configuration, when interfaces are re-ordered or when interface is removed from middle of the list.

### Changed

- upcloud_managed_database_\*: Update available properties to match listing provided by the API, see [#626](https://github.com/UpCloudLtd/terraform-provider-upcloud/pull/626) for details.

## [5.14.0] - 2024-10-28

### Changed
Expand Down
5 changes: 3 additions & 2 deletions docs/resources/managed_database_mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,16 @@ Optional Attributes:
- `interactive_timeout` (Number) The number of seconds the server waits for activity on an interactive connection before closing it.
- `internal_tmp_mem_storage_engine` (String) The storage engine for in-memory internal temporary tables.
- `ip_filter` (List of String) IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
- `long_query_time` (Number) The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute. Default is 10s.
- `log_output` (String) The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE.
- `long_query_time` (Number) The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute.
- `max_allowed_packet` (Number) Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
- `max_heap_table_size` (Number) Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
- `net_buffer_length` (Number) Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
- `net_read_timeout` (Number) The number of seconds to wait for more data from a connection before aborting the read.
- `net_write_timeout` (Number) The number of seconds to wait for a block to be written to a connection before aborting the write.
- `public_access` (Boolean) Public Access. Allow access to the service from the public Internet.
- `service_log` (Boolean) Service logging. Store logs for the service so that they are available in the HTTP API and console.
- `slow_query_log` (Boolean) Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table. Default is off.
- `slow_query_log` (Boolean) Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table.
- `sort_buffer_size` (Number) Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
- `sql_mode` (String) Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
- `sql_require_primary_key` (Boolean) Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
Expand Down
Loading

0 comments on commit d2da8ec

Please sign in to comment.