-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
40 lines (37 loc) · 728 Bytes
/
variables.tf
File metadata and controls
40 lines (37 loc) · 728 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
35
36
37
38
39
40
variable "project_id" {}
variable "region" {
default = "us-central1"
}
variable "zone" {
default = "us-central1-a"
}
variable "machine_type" {
default = "e2-micro"
}
variable "instance_name" {
default = "gitea-instance"
}
variable "disk_size" {
default = 10
}
variable "network_name" {
default = "gitea-network"
}
variable "subnet_name" {
default = "gitea-subnet"
}
variable "gitea_port" {
default = 3000
}
variable "gitea_admin_username" {}
variable "gitea_admin_password" {}
variable "gitea_db_password" {
description = "Password for the Gitea PostgreSQL database"
}
variable "repository_id" {}
variable "description" {
default = "Masabra's docker registry"
}
variable "format" {
default = "DOCKER"
}