Skip to content

Commit

Permalink
chore(release): 1.63.1
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Sep 26, 2024
1 parent 999307c commit fdcb03a
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [1.63.1](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.63.0...v1.63.1) (2024-09-26)

### Features

* **no-release:** Add QR code generation for WiFi ([#564](https://github.com/terraform-routeros/terraform-provider-routeros/issues/564)) ([9c39ae2](https://github.com/terraform-routeros/terraform-provider-routeros/commit/9c39ae2b52e62dfc7b3451887ee726a137b1c64c))

### Bug Fixes

* Missing fields in `routeros_system_user ` (introduced in 7.16) ([3ae2e10](https://github.com/terraform-routeros/terraform-provider-routeros/commit/3ae2e1030a7e30e935da4cdc316028c2abd3c91b)), closes [#560](https://github.com/terraform-routeros/terraform-provider-routeros/issues/560)
* **no-release:** Add field introduced in 7.16 `routeros_ip_address` ([de72d8e](https://github.com/terraform-routeros/terraform-provider-routeros/commit/de72d8e6c421dc4c4dee36c0a45d207a8d232c9c))
* **no-release:** Update `datasource_ipv6_addresses.go` ROS 7.16 ([0c0306b](https://github.com/terraform-routeros/terraform-provider-routeros/commit/0c0306b975c6be0314ea773b6ccc6f4acbfbe04d))
* **no-release:** Update `resource_system_logging.go` ROS 7.16 ([884addc](https://github.com/terraform-routeros/terraform-provider-routeros/commit/884addca655d60e91b74bd9cc507bb17cc55e6ca))

## [1.63.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.62.0...v1.63.0) (2024-09-24)


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/ip_addresses.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ Read-Only:
- `interface` (String)
- `invalid` (Boolean)
- `network` (String)
- `slave` (Boolean)


2 changes: 2 additions & 0 deletions docs/data-sources/ipv6_addresses.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Read-Only:
- `address` (String)
- `advertise` (Boolean)
- `comment` (String)
- `deprecated` (Boolean)
- `disabled` (Boolean)
- `dynamic` (Boolean)
- `eui_64` (Boolean)
Expand All @@ -36,5 +37,6 @@ Read-Only:
- `invalid` (Boolean)
- `link_local` (Boolean)
- `no_dad` (Boolean)
- `slave` (Boolean)


39 changes: 39 additions & 0 deletions docs/data-sources/wifi_easy_connect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# routeros_wifi_easy_connect (Data Source)


## Example Usage
```terraform
data "routeros_wifi_easy_connect" "test" {
type = "WPA2"
ssid = "test"
password = "password12345"
}
output "qrcode" {
value = data.routeros_wifi_easy_connect.test.qr_code
}
```

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

### Required

- `password` (String, Sensitive) Password, ignored if T is nopass (in which case it may be omitted). Enclose in double quotes if it is an ASCII name, but could be interpreted as hex (i.e. "ABCD").
- `ssid` (String) Network SSID. Required. Enclose in double quotes if it is an ASCII name, but could be interpreted as hex (i.e. "ABCD").

### Optional

- `eap_anonymous` (Boolean) (WPA2-EAP only) Anonymous identity
- `eap_identity` (String) (WPA2-EAP only) Identity.
- `eap_method` (String) (WPA2-EAP only) EAP method, like TTLS or PWD.
- `eap_phase2` (String) (WPA2-EAP only) Phase 2 method, like `MSCHAPV2`
- `hidden` (Boolean) True if the network SSID is hidden.
- `type` (String) Authentication type; can be WEP or WPA or WPA2-EAP, or nopass for no password. Or, omit for no password.

### Read-Only

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


2 changes: 2 additions & 0 deletions docs/resources/system_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ resource "routeros_system_user" "test" {
- `address` (String) Host or network address from which the user is allowed to log in.
- `comment` (String)
- `disabled` (Boolean)
- `inactivity_policy` (String) Inactivity policy.
- `inactivity_timeout` (String) Inactivity timeout for non-GUI sessions.
- `password` (String, Sensitive) User password. If not specified, it is left blank (hit [Enter] when logging in). It conforms to standard Unix characteristics of passwords and may contain letters, digits, '*' and '_' symbols.

### Read-Only
Expand Down
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.63.0",
"version": "1.63.1",
"repository": {
"type": "git",
"url": "https://github.com/terraform-routeros/terraform-provider-routeros"
Expand Down

0 comments on commit fdcb03a

Please sign in to comment.