feat: Add Terraform configuration for GCP infrastructure and Docker setup
This commit is contained in:
parent
94499fd16e
commit
538fed9a66
10 changed files with 283 additions and 0 deletions
31
gcloud/tf/vars.tf
Normal file
31
gcloud/tf/vars.tf
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
// Env vars
|
||||
// ----------------------------------
|
||||
|
||||
variable "project_name" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "env" {
|
||||
type = string
|
||||
default = "dev"
|
||||
description = "Environment"
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = string
|
||||
default = vars.region
|
||||
description = "GCP Region"
|
||||
}
|
||||
|
||||
variable "zone" {
|
||||
type = string
|
||||
default = vars.zone
|
||||
description = "GCP Zone"
|
||||
}
|
||||
|
||||
variable "app_name" {
|
||||
type = string
|
||||
default = var.app_name
|
||||
description = "Application name"
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue