File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ frontend:
114114 haproxy.router.openshift.io/rate-limit-connections.rate-http : " 200000"
115115 haproxy.router.openshift.io/rate-limit-connections.rate-tcp : " 5000000"
116116 haproxy.router.openshift.io/disable_cookies : " true"
117+ haproxy.router.openshift.io/timeout : 600s
117118 pdb :
118119 enabled : false # enable it in PRODUCTION for having pod disruption budget.
119120 minAvailable : 1 # the minimum number of pods that must be available during the disruption budget.
Original file line number Diff line number Diff line change @@ -57,30 +57,35 @@ variable "apim_key" {
5757 description = " API Management key for Azure OpenAI API"
5858 type = string
5959 sensitive = true
60+ nullable = true
6061}
6162
6263variable "openai_deployment_name" {
6364 description = " Azure OpenAI primary deployment name"
6465 type = string
6566 default = " gpt-5.1-chat"
67+ nullable = true
6668}
6769
6870variable "openai_embedding_deployment_name" {
6971 description = " Azure OpenAI embedding deployment name"
7072 type = string
7173 default = " text-embedding-3-large"
74+ nullable = true
7275}
7376
7477variable "openai_endpoint" {
7578 description = " Azure OpenAI endpoint URL"
7679 type = string
7780 sensitive = true
81+ nullable = true
7882}
7983
8084variable "ai_search_endpoint" {
8185 description = " Azure AI Search endpoint URL"
8286 type = string
8387 sensitive = true
88+ nullable = true
8489}
8590
8691variable "azure_search_index_name" {
@@ -216,6 +221,7 @@ variable "document_intelligence_endpoint" {
216221 description = " Azure Document Intelligence endpoint URL"
217222 type = string
218223 sensitive = true
224+ nullable = true
219225}
220226
221227# Azure AI Search Module Variables
You can’t perform that action at this time.
0 commit comments