-
Notifications
You must be signed in to change notification settings - Fork 560
/
Copy pathvariables.tf
42 lines (35 loc) · 883 Bytes
/
variables.tf
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
35
36
37
38
39
40
41
42
variable "atlas_org_id" {
description = "MongoDB Atlas Organization ID"
type = string
}
variable "public_key" {
description = "Public API key for MongoDB Atlas"
type = string
}
variable "private_key" {
description = "Private API key for MongoDB Atlas"
type = string
}
variable "cluster_name" {
description = "Name of the MongoDB Atlas cluster"
type = string
default = "RagCluster"
}
variable "project_name" {
description = "Name of the MongoDB Atlas project"
type = string
default = "RAGProject"
}
variable "db_username" {
description = "MongoDB database username"
type = string
}
variable "db_password" {
description = "MongoDB database password"
type = string
}
variable "ip_address" {
description = "IP address to whitelist"
type = string
default = "196.000.0.000"
}