We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Define tunnel configs in "mist_org_deviceprofile_gateway"; when apply get error "The terraform-provider-mist plugin crashed!"
resource "mist_org_deviceprofile_gateway" "deviceprofile_test1" { org_id = mist_org.terraform_test.id tunnel_configs = { "J1" = { auto_provision = { provider = "jse-ipsec" primary = { probe_ips = [ "8.8.8.8" ] wan_names = [ "wan0" ] } secondary = { probe_ips = [ "8.8.8.8" ] wan_names = [ "wan0" ] } } } } name = "SVL_HUB" ntp_override = true dns_override = true }
tunnel_configs should be applied correctly as what we see in UI:
The terraform-provider-mist plugin crashed!
OS: [MacOS] Terraform Version [v1.9.1] Provider Version [latest version]
The text was updated successfully, but these errors were encountered:
fix tunnel_configs.auto_provision attribute in gateway resources
tunnel_configs.auto_provision
gateway
26b6cec
fix for #68
Hi @lzhang-AIDE ,
I just released v0.2.13. Can you test it?
Thanks
Sorry, something went wrong.
With the latest code, there is no crash happened. But the Probe IPs is not applied:
Could you check @tmunzer? Thanks.
Thanks. There is no probe_ips in the API doc for the auto_provision object. I'll check that and I'll add it
probe_ips
auto_provision
tmunzer
No branches or pull requests
Describe the bug
Define tunnel configs in "mist_org_deviceprofile_gateway"; when apply get error "The terraform-provider-mist plugin crashed!"
To Reproduce
resource "mist_org_deviceprofile_gateway" "deviceprofile_test1" {
org_id = mist_org.terraform_test.id
tunnel_configs = {
"J1" = {
auto_provision = {
provider = "jse-ipsec"
primary = {
probe_ips = [
"8.8.8.8"
]
wan_names = [
"wan0"
]
}
secondary = {
probe_ips = [
"8.8.8.8"
]
wan_names = [
"wan0"
]
}
}
}
}
name = "SVL_HUB"
ntp_override = true
dns_override = true
}
Expected behavior
tunnel_configs should be applied correctly as what we see in UI:
Error Message
The terraform-provider-mist plugin crashed!
Software
OS: [MacOS]
Terraform Version [v1.9.1]
Provider Version [latest version]
The text was updated successfully, but these errors were encountered: