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
In this example: https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kubernetes_fleet_member#example-usage,
resource "azurerm_kubernetes_cluster" "example" { name = "example" location = azurerm_resource_group.example.location resource_group_name = azurerm_resource_group.example.name dns_prefix = "acctestaksexample" default_node_pool { name = "example-value" node_count = "example-value" vm_size = "example-value" } identity { type = "example-value" } }
The node_count's example value is invalid, it should be a number, but a string.
The codes related: https://github.com/hashicorp/pandora/blob/main/tools/importer-rest-api-specs/components/terraform/examples/variable_replacements.go#L78
Can we update this to keep the values as in the tests?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In this example: https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kubernetes_fleet_member#example-usage,
The node_count's example value is invalid, it should be a number, but a string.
The codes related: https://github.com/hashicorp/pandora/blob/main/tools/importer-rest-api-specs/components/terraform/examples/variable_replacements.go#L78
Can we update this to keep the values as in the tests?
The text was updated successfully, but these errors were encountered: