-
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_search_service should support the "Allow Azure services on the trusted services list to access this search service"-flag #26575
Comments
Any work arounds for this in the mean time (apart from click ops of course)? I don't see anything in the CLI. |
The Microsoft documentation only mentions the direct API call: https://learn.microsoft.com/en-us/azure/ai-services/openai/how-to/use-your-data-securely#enable-trusted-service-1
|
Hey, you can add the following snippet bellow the lines where you create your AI Search: body = { This will make an API call and update the AI Search with just what you wanted. Adjust the resource_id to reflect your Terraform code. |
@henrydleao many thanks for the tip! If you were wondering what else can be set and where the docs are:
|
…_option` Refs: hashicorp#26575 Signed-off-by: patst <[email protected]>
…_option` Refs: hashicorp#26575 Signed-off-by: patst <[email protected]>
…_option` Refs: hashicorp#26575 Signed-off-by: patst <[email protected]>
…_option` (#28139) * `azurerm_search_service` allows configuration of `network_rule_bypass_option` Refs: #26575 Signed-off-by: patst <[email protected]> * `azurerm_search_service` allows configuration of `network_rule_bypass_option` Refs: #26575 Signed-off-by: patst <[email protected]> * `azurerm_search_service` allows configuration of `network_rule_bypass_option` Refs: #26575 Signed-off-by: patst <[email protected]> --------- Signed-off-by: patst <[email protected]>
Is there an existing issue for this?
Community Note
Description
The Azure Search Service should have an attribute to disable / enable the flag to "Allow Azure services on the trusted services list to access this search service".
This was recently introduced by Microsoft:
The flag is required if you disable the networking and use additional AI resources like Open AI that needs to reach the Search Service.
New or Affected Resource(s)/Data Source(s)
azurerm_search_service
Potential Terraform Configuration
References
This issue requires the 1.4.0 of the search go sdk before it can be implemented: https://github.com/Azure/azure-sdk-for-go/releases/tag/sdk%2Fresourcemanager%2Fsearch%2Farmsearch%2Fv1.4.0-beta.1 because it adds support for:
New field Bypass in struct NetworkRuleSet
The text was updated successfully, but these errors were encountered: