feat: Add Terraform configuration for Google Cloud project
This commit is contained in:
25
variables.tf
Normal file
25
variables.tf
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user