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
During terraform apply, I get the following error on the console:
Error: Provider produced inconsistent result after apply │ │ When applying changes to module.<name_of_module>.citrixadc_route6.default_route_ipv6, provider "provider[\"registry.terraform.io/citrix/citrixadc\"]" produced an unexpected new value: Root resource was present, but now absent. │ │ This is a bug in the provider, which should be reported in the provider's own issue tracker.
Even if this error is shown, the route is created successfully on the Netscaler, but the state file still does not include this resource. So there is now an inconsistency between real configuration on the Netscaler and the terraform state file.
Expected behaviour
The resource would be created successfully and the state file would cover the real configuration of the Netscaler.
Screenshots
Environment (please fill the following information):
OS: WSL (Ubuntu 20.04.6 LTS) on Windows 10
Terraform v1.4.6
Using previously-installed citrix/citrixadc v1.37.0
We now use a null_resource as a workaround, but we would like to use the citrixadc_route6 resource instead.
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Bug Report
I created the following resource to create a default IPv6 route on Netscaler instance:
resource "citrixadc_route6" "default_route_ipv6" {
network = "::/0"
gateway = var.<name_of_variable_including_IPv6_gateway_address>
}
During terraform apply, I get the following error on the console:
Error: Provider produced inconsistent result after apply │ │ When applying changes to module.<name_of_module>.citrixadc_route6.default_route_ipv6, provider "provider[\"registry.terraform.io/citrix/citrixadc\"]" produced an unexpected new value: Root resource was present, but now absent. │ │ This is a bug in the provider, which should be reported in the provider's own issue tracker.
Even if this error is shown, the route is created successfully on the Netscaler, but the state file still does not include this resource. So there is now an inconsistency between real configuration on the Netscaler and the terraform state file.
Expected behaviour
The resource would be created successfully and the state file would cover the real configuration of the Netscaler.
Screenshots
Environment (please fill the following information):
We now use a null_resource as a workaround, but we would like to use the citrixadc_route6 resource instead.
Thanks in advance.
The text was updated successfully, but these errors were encountered: