Skip to content

Commit

Permalink
fix: Remove the default value for the radio_mac property in the `ro…
Browse files Browse the repository at this point in the history
…uteros_wifi_provisioning` resource
  • Loading branch information
dokmic authored and vaerh committed Aug 23, 2024
1 parent 2ad0de6 commit a35d307
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions routeros/resource_wifi_provisioning.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ func ResourceWifiProvisioning() *schema.Resource {
Description: "Specify the format of the CAP interface name creation.",
},
"radio_mac": {
Type: schema.TypeString,
Optional: true,
Default: "00:00:00:00:00:00",
Description: "MAC address of radio to be matched, empty MAC (00:00:00:00:00:00) means match all MAC addresses.",
ValidateFunc: ValidationMacAddress,
Type: schema.TypeString,
Optional: true,
Description: "MAC address of radio to be matched, empty MAC means match all MAC addresses. `00:00:00:00:00:00` is not considered empty MAC-address.",
ValidateFunc: ValidationMacAddress,
DiffSuppressFunc: AlwaysPresentNotUserProvided,
},
"slave_configurations": {
Type: schema.TypeList,
Expand Down

0 comments on commit a35d307

Please sign in to comment.