-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (38 loc) · 910 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
43
44
45
variable "aws_region" {
description = "AWS region"
type = string
default = "us-east-1"
}
variable "instance_type" {
description = "EC2 instance type"
type = string
default = "t3.large"
}
variable "environment" {
description = "Environment name"
type = string
default = "production"
}
variable "gitlab_domain" {
description = "Domain name for GitLab instance"
type = string
}
variable "cloudflare_zone_id" {
description = "Cloudflare Zone ID"
type = string
}
variable "cloudflare_api_token" {
description = "Cloudflare API Token"
type = string
sensitive = true
}
variable "volume_size" {
description = "Size of the EBS volume in GB"
type = number
default = 100
}
variable "gitlab_root_password" {
description = "Default password for GitLab root user"
type = string
sensitive = true
}