We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 092f1da commit 4339194Copy full SHA for 4339194
1 file changed
terraform-infrastructure/variables.tf
@@ -0,0 +1,28 @@
1
+variable "resource_group_name" {
2
+ type = string
3
+ description = "Existing resource group name where resources will be deployed"
4
+}
5
+
6
+variable "location" {
7
8
+ description = "Azure region for resources"
9
+ default = "eastus"
10
11
12
+variable "name_prefix" {
13
14
+ description = "Prefix for all resource names (will append random suffix)"
15
+ default = "zava"
16
17
18
+variable "user_principal_id" {
19
20
+ description = "Object ID of the user/principal to grant Cosmos DB data contributor access. Defaults to current Azure CLI user."
21
+ default = null
22
23
24
+variable "enable_cosmos_local_auth" {
25
+ type = bool
26
+ description = "Whether to enable local auth on Cosmos DB account"
27
+ default = true
28
0 commit comments