forked from JeffGiroux/f5_terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
52 lines (51 loc) · 1.45 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
# Variables
variable "gcp_project_id" {
type = string
default = null
description = "GCP Project ID for provider"
}
variable "gcp_region" {
type = string
default = "us-west1"
description = "GCP Region for provider"
}
variable "gcp_zone" {
type = string
default = "us-west1-b"
description = "GCP Zone for provider"
}
variable "prefix" {
type = string
default = "demo"
description = "This value is inserted at the beginning of each Google object (alpha-numeric, no special character)"
}
variable "adminSrcAddr" {
type = string
default = "0.0.0.0/0"
description = "Trusted source network for admin access"
}
variable "cidr_range_mgmt" {
type = string
default = "10.1.1.0/24"
description = "IP CIDR range for management VPC network"
}
variable "cidr_range_ext" {
type = string
default = "10.1.10.0/24"
description = "IP CIDR range for external VPC network"
}
variable "cidr_range_int" {
type = string
default = "10.1.20.0/24"
description = "IP CIDR range for internal VPC network"
}
variable "owner" {
type = string
default = null
description = "This is a tag used for object creation. Example is last name."
}
variable "f5_cloud_failover_label" {
type = string
default = "mydeployment"
description = "This is a tag used for F5 Cloud Failover Extension to identity which cloud objects to move during a failover event."
}