variables.tf 682 B

123456789101112131415161718192021222324252627282930
  1. # Variables for minimal GCP Vertex AI deployment
  2. variable "project_id" {
  3. description = "GCP Project ID"
  4. type = string
  5. }
  6. variable "region" {
  7. description = "GCP region for deployment"
  8. type = string
  9. default = "us-central1"
  10. }
  11. variable "project_name" {
  12. description = "Name of the project (used for resource naming)"
  13. type = string
  14. default = "llama-api"
  15. }
  16. variable "environment" {
  17. description = "Environment name (dev, staging, prod)"
  18. type = string
  19. default = "dev"
  20. }
  21. variable "artifact_retention_days" {
  22. description = "Number of days to retain artifacts in the storage bucket"
  23. type = number
  24. default = 30
  25. }