forked from f5devcentral/f5-agility_GC_Terraform_ATC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
32 lines (29 loc) · 856 Bytes
/
variables.tf
File metadata and controls
32 lines (29 loc) · 856 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
variable "student_id" {
type = number
description = <<EOD
Your student id number for the lab.
EOD
}
variable "project_id" {
type = string
default = "f5-gcs-4261-sales-agility2022"
description = <<EOD
The GCP project identifier to use for Agility lab. If using outside of an Agility
lab, change this to your current project ID.
EOD
}
variable "region" {
type = string
default = "us-east1"
description = <<EOD
The region to deploy test resources. Default is 'us-east1'.
EOD
}
variable "bigip_image" {
type = string
default = "projects/f5-7626-networks-public/global/images/f5-bigip-16-1-2-2-0-0-28-payg-good-25mbps-220505073444"
description = <<EOD
The BIG-IP base image to use in lab. Update this to use the latest version not
vulnerable to any of the high quarterly CVEs for a more secure/reliable lab.
EOD
}