forked from gruntwork-io/terraform-google-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
26 lines (21 loc) · 1.04 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
# ---------------------------------------------------------------------------------------------------------------------
# REQUIRED PARAMETERS
# These parameters must be supplied when consuming this module.
# ---------------------------------------------------------------------------------------------------------------------
variable "project" {
description = "The name of the GCP Project where all resources will be launched."
type = string
}
variable "region" {
description = "The Region in which all GCP resources will be launched."
type = string
}
# ---------------------------------------------------------------------------------------------------------------------
# OPTIONAL PARAMETERS
# These parameters have reasonable defaults.
# ---------------------------------------------------------------------------------------------------------------------
variable "name_prefix" {
description = "A name prefix used in resource names to ensure uniqueness across a project."
type = string
default = "management"
}