Skip to content

Commit

Permalink
chore(release): 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed May 15, 2023
1 parent a01a1ce commit f414910
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 51 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [1.7.1](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.7.0...v1.7.1) (2023-05-15)


### Bug Fixes

* Fix resource names [#183](https://github.com/terraform-routeros/terraform-provider-routeros/issues/183) ([a4314d0](https://github.com/terraform-routeros/terraform-provider-routeros/commit/a4314d0c2765f7d6eea1cc672bf8c5dc633e9941))
* Fix the gateway field (veth) ([97b933b](https://github.com/terraform-routeros/terraform-provider-routeros/commit/97b933b2221005433cf249403086bce6d970c202))

## [1.7.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.6.0...v1.7.0) (2023-05-14)


Expand Down
2 changes: 1 addition & 1 deletion docs/resources/interface_veth.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ resource "routeros_interface_veth" "test" {
### Required

- `address` (String) IP address.
- `gateway` (String) Gateway IP address.
- `name` (String) Interface name.

### Optional

- `comment` (String)
- `disabled` (Boolean)
- `gateway` (String) Gateway IP address.

### Read-Only

Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
# routeros_bgp_connection (Resource)
# routeros_routing_bgp_connection (Resource)
> [!WARNING] Using this resource you may happen unexpected behavior, for example, some of the attributes may not be removable after adding them to the TF configuration. Please report this to GitHub and it may be possible to fix it. Use the resource at your own risk as it is!
## Example Usage
```terraform
resource "routeros_bgp_connection" "test" {
name = "neighbor-test"
as = "65550/5"
as_override = true
add_path_out = "none"
remote {
address = "172.17.0.1"
as = "12345/5"
}
local {
role = "ebgp"
}
}
```


<!-- schema generated by tfplugindocs -->
## Schema
Expand Down Expand Up @@ -119,10 +104,4 @@ Optional:
- `port` (Number) Local connection port.
- `ttl` (Number) Acceptable minimum Time To Live, the hop limit for this TCP connection. For example, if 'ttl=255' then only single-hop neighbors will be able to establish the connection. This property only affects EBGP peers.

## 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 [/routing/bgp/connection get [print show-ids]]
terraform import routeros_bgp_connection.test *3
```

Original file line number Diff line number Diff line change
@@ -1,23 +1,7 @@
# routeros_bgp_template (Resource)
# routeros_routing_bgp_template (Resource)
> [!WARNING] Using this resource you may happen unexpected behavior, for example, some of the attributes may not be removable after adding them to the TF configuration. Please report this to GitHub and it may be possible to fix it. Use the resource at your own risk as it is!
## Example Usage
```terraform
resource "routeros_bgp_template" "test" {
name = "test-template"
as = 65521
input {
limit_process_routes_ipv4 = 5
limit_process_routes_ipv6 = 5
}
output {
affinity = "alone"
keep_sent_attributes = true
default_originate = "never"
}
// save_to = "bgp.dump"
}
```


<!-- schema generated by tfplugindocs -->
## Schema
Expand Down Expand Up @@ -88,10 +72,4 @@ Optional:
- `no_early_cut` (Boolean) The early cut is the mechanism, to guess (based on default RFC behavior) what would happen with the sent NPLRI when received by the remote peer. If the algorithm determines that the NLRI is going to be dropped, a peer will not even try to send it. However such behavior may not be desired in specific scenarios, then then this option should be used to disable the early cut feature.
- `redistribute` (String) Enable redistribution of specified route types.

## 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 [/routing/bgp/template get [print show-ids]]
terraform import routeros_bgp_template.test *3
```

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.7.0",
"version": "1.7.1",
"repository": {
"type": "git",
"url": "https://github.com/terraform-routeros/terraform-provider-routeros"
Expand Down

0 comments on commit f414910

Please sign in to comment.