29 lines
420 B
Terraform
29 lines
420 B
Terraform
|
|
// 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"
|
||
|
|
}
|
||
|
|
|