-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (34 loc) · 969 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
variable "stage" {
description = "The stage of the deployment (e.g., dev, staging, prod)"
type = string
default = "dev"
}
variable "allowed_account_ids" {
description = "List of allowed AWS account IDs"
type = list(string)
default = ["AWS_ACCOUNT_ID"]
}
variable "organisation" {
description = "The organisation name"
type = string
default = "qdrant-test"
}
variable "region_cidr_blocks" {
type = map(string)
default = {
us-east-1 = "10.0.0.0/16"
us-west-1 = "10.1.0.0/16"
eu-west-2 = "10.3.0.0/16"
}
description = "Predefined CIDR blocks for each region's VPC"
}
variable "first_create" {
description = "Whether this is the first time you are creating the infrastructure"
type = bool
default = false
}
variable "vpc_peering_connection_ids" {
description = "Map of region names to VPC peering connection IDs"
type = map(string)
default = {}
}