28 lines
420 B
HCL
28 lines
420 B
HCL
// Env vars
|
|
// ----------------------------------
|
|
|
|
variable "project_name" {
|
|
type = string
|
|
}
|
|
|
|
variable "env" {
|
|
type = string
|
|
default = "dev"
|
|
description = "Environment"
|
|
}
|
|
|
|
variable "region" {
|
|
type = string
|
|
description = "GCP Region"
|
|
}
|
|
|
|
variable "zone" {
|
|
type = string
|
|
description = "GCP Zone"
|
|
}
|
|
|
|
variable "app_name" {
|
|
type = string
|
|
description = "Application name"
|
|
}
|
|
|