Skip to content

Commit

Permalink
chore(release): 1.69.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Nov 14, 2024
1 parent 6b6d063 commit 1a70f0d
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.69.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.68.0...v1.69.0) (2024-11-14)

### Features

* **ipv6:** Add new resource `routeros_ipv6_settings` ([4410ddc](https://github.com/terraform-routeros/terraform-provider-routeros/commit/4410ddc9941257e9ff58b40d434d7b59b6ea886b)), closes [#596](https://github.com/terraform-routeros/terraform-provider-routeros/issues/596)

## [1.68.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.67.0...v1.68.0) (2024-11-13)

### Features
Expand Down
39 changes: 39 additions & 0 deletions docs/resources/ipv6_settings.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# routeros_ipv6_settings (Resource)


## Example Usage
```terraform
resource "routeros_ipv6_settings" "settings" {
accept_redirects = "no"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Optional

- `accept_redirects` (String) Whether to accept ICMP redirect messages. Typically should be enabled on the host and disabled on routers.
- `accept_router_advertisements` (String) Accept router advertisement (RA) messages. If enabled, the router will be able to get the address using stateless address configuration.
- `disable_ipv6` (Boolean) Enable/disable system wide IPv6 settings (prevents LL address generation).
- `forward` (Boolean) Enable/disable packet forwarding between interfaces.
- `max_neighbor_entries` (Number) A maximum number or IPv6 neighbors. Since RouterOS version 7.1, the default value depends on the installed amount of RAM. It is possible to set a higher value than the default, but it increases the risk of out-of-memory condition. The default values for certain RAM sizes:
* 1024 for 64 MB,
* 2048 for 128 MB,
* 4096 for 256 MB,
* 8192 for 512 MB,
* 16384 for 1024 MB or higher.
- `multipath_hash_policy` (String) IPv6 Hash policy used for ECMP routing in `/ipv6/settings` menu
* l3 -- layer-3 hashing of src IP, dst IP, flow label, IP protocol
* l3-inner -- layer-3 hashing or inner layer-3 hashing if available
* l4 -- layer-4 hashing of src IP, dst IP, IP protocol, src port, dst port.

### Read-Only

- `id` (String) The ID of this resource.

## Import
Import is supported using the following syntax:
```shell
terraform import routeros_ipv6_settings.settings .
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terraform-provider-routeros",
"version": "1.68.0",
"version": "1.69.0",
"repository": {
"type": "git",
"url": "https://github.com/terraform-routeros/terraform-provider-routeros"
Expand Down

0 comments on commit 1a70f0d

Please sign in to comment.