26 lines
603 B
HCL
26 lines
603 B
HCL
# Variables for Google Cloud Project creation
|
|
|
|
variable "project_name" {
|
|
description = "Name of the Google Cloud project"
|
|
type = string
|
|
default = "rothbard-project-staging"
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "ID of the Google Cloud project"
|
|
type = string
|
|
default = "rothbard-project-staging-12345"
|
|
}
|
|
|
|
variable "organization_id" {
|
|
description = "ID of the Google Cloud Organization"
|
|
type = string
|
|
default = "123456789012"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Default region for resources"
|
|
type = string
|
|
default = "us-central1"
|
|
}
|