forked from gruntwork-io/terratest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
47 lines (38 loc) · 1.73 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
# ---------------------------------------------------------------------------------------------------------------------
# ENVIRONMENT VARIABLES
# You must define the following environment variables.
# ---------------------------------------------------------------------------------------------------------------------
# GOOGLE_CREDENTIALS
# or
# GOOGLE_APPLICATION_CREDENTIALS
variable "gcp_project_id" {
description = "The ID of the GCP project in which these resources will be created."
}
# ---------------------------------------------------------------------------------------------------------------------
# REQUIRED PARAMETERS
# You must provide a value for each of these parameters.
# ---------------------------------------------------------------------------------------------------------------------
# ---------------------------------------------------------------------------------------------------------------------
# OPTIONAL PARAMETERS
# These parameters have reasonable defaults.
# ---------------------------------------------------------------------------------------------------------------------
variable "instance_name" {
description = "The Name to use for the Cloud Instance."
default = "terratest-example"
}
variable "machine_type" {
description = "The Machine Type to use for the Cloud Instance."
default = "f1-micro"
}
variable "zone" {
description = "The Zone to launch the Cloud Instance into."
default = "us-central1-a"
}
variable "bucket_name" {
description = "The Name of the example Bucket to create."
default = "gruntwork-terratest-bucket"
}
variable "bucket_location" {
description = "The location to store the Bucket. This value can be regional or multi-regional."
default = "US"
}