Skip to content

Commit

Permalink
chore(release): 1.49.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed May 17, 2024
1 parent 58a2255 commit c05d202
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [1.49.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.48.3...v1.49.0) (2024-05-17)


### Features

* **clock:** Add routeros_system_clock ([e7b3131](https://github.com/terraform-routeros/terraform-provider-routeros/commit/e7b3131606bb1fb6e957c3e4ed68f352f674fa23)), closes [#453](https://github.com/terraform-routeros/terraform-provider-routeros/issues/453)


### Bug Fixes

* **vrf:** Change import method ([915df28](https://github.com/terraform-routeros/terraform-provider-routeros/commit/915df28f7489e35b97c401f1ff4b8fbe1a223826))
* Warnings ([7fe815b](https://github.com/terraform-routeros/terraform-provider-routeros/commit/7fe815b91311a4b62ca0f42940b8cbdca938fbea))

## [1.48.3](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.48.2...v1.48.3) (2024-05-14)


Expand Down
31 changes: 29 additions & 2 deletions docs/resources/ip_vrf.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
# routeros_ip_vrf (Resource)



## Example Usage
```terraform
resource "routeros_interface_veth" "veth1" {
name = "veth1"
}
resource "routeros_interface_veth" "veth2" {
name = "veth2"
}
resource "routeros_ip_vrf" "test_vrf_a" {
disabled = true
name = "vrf_1"
comment = "Custom routing"
interfaces = ["veth1", "veth2"]
depends_on = [routeros_interface_veth.veth1, routeros_interface_veth.veth2]
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand All @@ -20,4 +37,14 @@

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


## Import
Import is supported using the following syntax:
```shell
#The ID can be found via API or the terminal
#The command for the terminal is -> :put [/ip/vrf get [print show-ids]]
terraform import routeros_ip_vrf.test_vrf_a "*0"
# or
terraform import routeros_ip_vrf.test_vrf_a "vrf_1"
# or
terraform import routeros_ip_vrf.test_vrf_a `"comment=Custom routing"`
```
1 change: 0 additions & 1 deletion docs/resources/ipv6_dhcp_client.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ resource "routeros_ipv6_dhcp_client" "client" {
add-default-route = true
pool_prefix_length = 64
request = ["prefix"]
interface = "ether1"
}
```

Expand Down
1 change: 0 additions & 1 deletion docs/resources/ipv6_neighbor_discovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ resource "routeros_ipv6_neighbor_discovery" "test" {
reachable_time = "10m"
retransmit_interval = "12m"
}
`
```

<!-- schema generated by tfplugindocs -->
Expand Down
33 changes: 33 additions & 0 deletions docs/resources/system_clock.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# routeros_system_clock (Resource)


## Example Usage
```terraform
resource "routeros_system_clock" "set" {
date = "2024-05-15"
time = "17:58:11"
time_zone_name = "EST"
}
```

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

### Optional

- `date` (String) Date.
- `time` (String) Time.
- `time_zone_autodetect` (Boolean) Feature available from v6.27. If enabled, the time zone will be set automatically.
- `time_zone_name` (String) Name of the time zone. As most of the text values in RouterOS, this value is case sensitive. Special value manual applies [manually configured GMT offset](https://wiki.mikrotik.com/wiki/Manual:System/Time#Manual_time_zone_configuration), which by default is 00:00 with no daylight saving time.

### Read-Only

- `dst_active` (Boolean) This property has the value yes while daylight saving time of the current time zone is active.
- `gmt_offset` (String) This is the current value of GMT offset used by the system, after applying base time zone offset and active daylight saving time offset.
- `id` (String) The ID of this resource.

## Import
Import is supported using the following syntax:
```shell
terraform import routeros_system_clock.set .
```
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.48.3",
"version": "1.49.0",
"repository": {
"type": "git",
"url": "https://github.com/terraform-routeros/terraform-provider-routeros"
Expand Down

0 comments on commit c05d202

Please sign in to comment.