You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue Description:
When running Terraform planning, an error occurs. The error happens when attempting to create the routeros_interface_wireguard_peer resource with the client_keepalive parameter. The error indicates that Terraform expects a numeric value for the client_keepalive parameter but fails to parse it correctly, even when a numeric value is provided as expected.
Steps to Reproduce:
Run Terraform using a configuration file that includes the routeros_interface_wireguard_peer resource.
Attempt to perform planning (terraform plan).
Expected Behavior:
Expected successful planning execution without errors, as the client_keepalive parameter was specified as a numeric value according to the documentation.
Actual Behavior:
When performing planning, an error is encountered indicating that Terraform cannot parse the numeric value of the client_keepalive parameter, even though it is correctly represented.
Terraform Version:
Terraform v1.7.5
on darwin_arm64
Configuration File:
resource"routeros_interface_wireguard_peer""wg_peer" {
# Other parameters...client_keepalive=25# Correct numeric value
}
Issue Description:
When running Terraform planning, an error occurs. The error happens when attempting to create the
routeros_interface_wireguard_peer
resource with theclient_keepalive
parameter. The error indicates that Terraform expects a numeric value for theclient_keepalive
parameter but fails to parse it correctly, even when a numeric value is provided as expected.Steps to Reproduce:
routeros_interface_wireguard_peer
resource.terraform plan
).Expected Behavior:
Expected successful planning execution without errors, as the
client_keepalive
parameter was specified as a numeric value according to the documentation.Actual Behavior:
When performing planning, an error is encountered indicating that Terraform cannot parse the numeric value of the
client_keepalive
parameter, even though it is correctly represented.Terraform Version:
Terraform v1.7.5
on darwin_arm64
Configuration File:
Documentation:
Link to the documentation where the
client_keepalive
parameter is described as requiring a numeric value.Additional Notes:
The text was updated successfully, but these errors were encountered: