Skip to content

Commit

Permalink
Merge pull request #663 from terraform-routeros/vaerh/issue662
Browse files Browse the repository at this point in the history
fix(wifi_security): ft_mobility_domain is a (hex) string, not an integer
  • Loading branch information
vaerh authored Feb 16, 2025
2 parents e87ac3a + 497e430 commit ad5a793
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions routeros/resource_wifi_security.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ func ResourceWifiSecurity() *schema.Resource {
Description: "An option to enable 802.11r fast BSS transitions (roaming).",
},
"ft_mobility_domain": {
Type: schema.TypeInt,
Optional: true,
Description: "The fast BSS transition mobility domain ID.",
ValidateFunc: Validation64k,
Type: schema.TypeString,
Optional: true,
Description: "The fast BSS transition mobility domain ID.",
DiffSuppressFunc: HexEqual,
},
"ft_nas_identifier": {
Type: schema.TypeString,
Expand Down

0 comments on commit ad5a793

Please sign in to comment.