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
Describe the problem
In following document: https://registry.terraform.io/providers/AviatrixSystems/aviatrix/latest/docs/resources/aviatrix_spoke_external_device_conn
Second example:
# Create an Aviatrix Spoke External Device Connection with HA enabled resource "aviatrix_spoke_external_device_conn" "test" { vpc_id = "vpc-abcd1234" connection_name = "my_conn" gw_name = "spokeGw" connection_type = "static" remote_subnet = "12.0.0.0/24" remote_gateway_ip = "172.12.13.14" enable_ha = true backup_remote_gateway_ip = "172.12.13.15" }
enable_ha isn't a valid parameter, it should be: ha_enabled
To Reproduce
Just write the code in vscode, and it will pick up
Expected behavior The second example:
enable_ha = true
should be replaced by
ha_enabled = true
Additional data / screenshots N/A
If applicable, add screenshots to help explain your problem.
Environment:
Additional context What was the impact?
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the problem
In following document:
https://registry.terraform.io/providers/AviatrixSystems/aviatrix/latest/docs/resources/aviatrix_spoke_external_device_conn
Second example:
enable_ha isn't a valid parameter, it should be: ha_enabled
To Reproduce
Just write the code in vscode, and it will pick up
Expected behavior
The second example:
should be replaced by
Additional data / screenshots
N/A
If applicable, add screenshots to help explain your problem.
Environment:
Additional context
What was the impact?
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: