variables.tf 602 B

12345678910111213141516171819202122232425
  1. # Variables for minimal Amazon Bedrock deployment
  2. variable "aws_region" {
  3. description = "AWS region for deployment"
  4. type = string
  5. default = "us-east-1"
  6. }
  7. variable "project_name" {
  8. description = "Name of the project (used for resource naming)"
  9. type = string
  10. default = "llama-api"
  11. }
  12. variable "environment" {
  13. description = "Environment name (dev, staging, prod)"
  14. type = string
  15. default = "dev"
  16. }
  17. variable "create_user" {
  18. description = "Whether to create IAM user with access keys for programmatic access"
  19. type = bool
  20. default = false
  21. }