-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvariables.tf
More file actions
34 lines (29 loc) · 959 Bytes
/
variables.tf
File metadata and controls
34 lines (29 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
variable "resource_group_name" {
type = string
description = "Existing resource group name where resources will be deployed"
}
variable "location" {
type = string
description = "Azure region for resources"
default = "eastus"
}
variable "name_prefix" {
type = string
description = "Prefix for all resource names (will append random suffix)"
default = "zava"
}
variable "user_principal_id" {
type = string
description = "Object ID of the user/principal to grant Cosmos DB data contributor access. Defaults to current Azure CLI user."
default = null
}
variable "enable_cosmos_local_auth" {
type = bool
description = "Whether to enable local auth on Cosmos DB account"
default = true
}
variable "enable_ai_automation" {
type = bool
description = "Whether to run Azure AI Foundry automation steps (model deployments, connections, .env creation)"
default = true
}