-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
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
azurerm_resources
- does not return all matched resources sometimes
#7036
Conversation
azurerm_resources
- does not return all matched resources sometimes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@njuCZ thanks for the PR, LGTM! 🚀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
This has been released in version 2.11.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example: provider "azurerm" {
version = "~> 2.11.0"
}
# ... other configuration ... |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks! |
CX team is using terraform data source data "azurerm_resources" to retrieve resources and are using those values to perform some automated deployments.
Sometimes, the output of the azurerm_resources presents with no values in first iteration and a nextLink. this doc says that the expected output is of type "resources"
I don't see a way to access the nextLink property in terraform (as far as I researched) the problem with nextLink is that since the first value is null, it is throwing error stating index not available
28: managed_relay_name = data.azurerm_resources.databricks_managed_relay.resources.name data.azurerm_resources.databricks_managed_relay.resources is empty list of object
The given key does not identify an element in this collection value.
fixes #7035