-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
53 lines (45 loc) · 1.12 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
# Define variables
variable "GITHUB_SECRET" {}
variable "GITHUB_OWNER" {}
variable "GCP_Bastion_FQDN" {}
variable "GCP_Bastion_DN" {}
variable "GCP_Bastion_CERT_Country" {}
variable "GCP_Bastion_CERT_Location" {}
variable "GCP_Bastion_CERT_ORG" {}
variable "GCP_Bastion_Email" {}
variable "GCP_Bastion_Admin_PW" {}
variable "GCP_PROJECT" {}
variable "gcp_credentials" {
type = string
sensitive = true
description = "Google Cloud service account credentials"
}
variable "GCP_Bastion_PW" {
type = string
sensitive = true
description = "Guacamole MySQL Password"
}
variable "admin_name" {
type = string
description = "Local Admin User"
default = "localadm"
}
variable "region" {
type = string
description = "Region where resources will be created"
default = "europe-west1"
}
variable "zone" {
type = string
description = "Name of the GCP zone"
default = "europe-west1-b"
}
variable "vpc1" {
type = string
description = "Name of your VPC Network"
default = "n4k-vpc-we-001"
}
variable "cidr-gcp" {
type = string
default = "172.21.2.0/24"
}