feat: Add Terraform configuration for Google Cloud project

This commit is contained in:
2025-10-30 20:53:56 -07:00
parent 5eff7f39a4
commit c601abcc34
3 changed files with 78 additions and 0 deletions

25
variables.tf Normal file
View File

@@ -0,0 +1,25 @@
# 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"
}