-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
69 lines (59 loc) · 1.46 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
####################
# Google Variables #
####################
## Google Project name
## -------------------
variable "project_id" {
description = "Google Project ID"
}
variable "location" {
description = "Google Location"
default = "US"
}
variable "region" {
description = "Google Region"
default = "us-central1"
}
variable "zone" {
description = "Google Region"
default = "us-central1-a"
}
variable "gcp_vm_count" {
description = "GCE Virtual Machine Count"
default = 1
}
variable "cloud_init_template_file" {
default = null
description = "Optional path for a cloud-init file"
type = string
}
variable "startup_script_template_file" {
default = null
description = "Optional path for a startup script file"
type = string
}
variable "instance_prefix" {
description = "Name prefix for vm instances"
default = "ampere-taut2a"
}
variable "virtual_network_name" {
default = "terraform-ampere-taut2a"
description = "virtual_network_name"
type = string
}
variable "gcp_vcn_cidr_block" {
default = "10.2.0.0/16"
description = "CIDR Address range for GCE Networks"
type = string
}
variable "gcp_vcn_cidr_subnet" {
default = "10.2.1.0/24"
description = "CIDR Address range for GCE Networks"
type = string
}
variable "gcp_os_image" {
default = "ubuntu2404"
# default = "rockylinux9"
# default = "debian11"
description = "Default OS Image From the Local Vars"
}