Hello! I am creating an Azure Search resource using Pulumi/Python. I was able to create the Search r...
a
Hello! I am creating an Azure Search resource using Pulumi/Python. I was able to create the Search resource itself, but I am wondering if it is possible to also create indexes for my Search service via Pulumi? I do not see an API to do so. Thank you! Pulumi AI recommended the following: search_index = azure_native.search.Index("searchIndex", resource_group_name=resource_group.name, search_service_name=search_service.name, fields=index_fields, but I just cannot find Index under search module.
f
You have encountered https://github.com/pulumi/pulumi-azure-native/issues/2034 simple smile The official stance is Pulumi does not typically support "data plane" resources such as this. Please 👍 the issue to register your interest!